1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 00:17:58 +01:00

Fix Hints mode mappings.

This commit is contained in:
Kris Maglione
2011-10-10 04:48:31 -04:00
parent 798f26c746
commit 0647ec14bb

View File

@@ -1239,6 +1239,10 @@ var Hints = Module("hints", {
function ({ count }) { hints.open("g;", { continue: true, count: count }); },
{ count: true });
let bind = function bind(names, description, action, params)
mappings.add([modes.HINTS], names, description,
action, params);
bind(["<Return>"],
"Follow the selected hint",
function ({ self }) { self.update(true); });