mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-06 21:04:12 +01:00
Fix for f09dc06283bef36e99e315b57acd16879c036410
This commit is contained in:
@@ -575,7 +575,7 @@ function Hints() //{{{
|
||||
function (count)
|
||||
{
|
||||
extendedhintCount = count;
|
||||
commandline.input(";", function (arg) { setTimeout(function () hints.show(arg), 0); },
|
||||
commandline.input(";", null,
|
||||
{
|
||||
promptHighlight: "Normal",
|
||||
completer: function (context)
|
||||
@@ -583,7 +583,8 @@ function Hints() //{{{
|
||||
context.compare = function () 0;
|
||||
context.completions = [[k, v.prompt] for ([k, v] in Iterator(hintModes))];
|
||||
},
|
||||
onChange: function () { modes.pop() }
|
||||
onChange: function () { modes.pop() },
|
||||
onCancel: function (arg) { arg && setTimeout(function () hints.show(arg), 0); },
|
||||
});
|
||||
}, { flags: Mappings.flags.COUNT });
|
||||
|
||||
|
||||
Reference in New Issue
Block a user