From 0647ec14bb86b3ffb08b685629ad9ed92362142c Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Mon, 10 Oct 2011 04:48:31 -0400 Subject: [PATCH] Fix Hints mode mappings. --- common/content/hints.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/content/hints.js b/common/content/hints.js index d5f6ef55..6d2481ed 100644 --- a/common/content/hints.js +++ b/common/content/hints.js @@ -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([""], "Follow the selected hint", function ({ self }) { self.update(true); });