1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-15 02:45:46 +01:00

Backout last change. Something broke just before I committed.

This commit is contained in:
Kris Maglione
2008-12-03 21:49:49 -05:00
parent 3592723aad
commit 35f807a046
5 changed files with 36 additions and 61 deletions

View File

@@ -598,18 +598,8 @@ function Hints() //{{{
mappings.add(myModes, [";"],
"Start an extended hint mode",
function (arg) {
commandline.input(";", function (arg) {
setTimeout(function () { hints.show(arg) }, 0);
},
{
completer: function (context) {
context.completions = [[k, v.prompt] for ([k, v] in Iterator(hintModes))]
},
onChange: function () { commandline.close() }
});
});
//{ flags: Mappings.flags.ARGUMENT });
function (arg) { hints.show(arg); },
{ flags: Mappings.flags.ARGUMENT });
/////////////////////////////////////////////////////////////////////////////}}}
////////////////////// PUBLIC SECTION //////////////////////////////////////////