diff options
Diffstat (limited to 'common/content/dactyl.js')
-rw-r--r-- | common/content/dactyl.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/content/dactyl.js b/common/content/dactyl.js index 5e705f07..5fcf2edd 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -1713,11 +1713,11 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), { }, mappings: function () { - mappings.add([modes.MAIN], ["<F1>"], + mappings.add([modes.MAIN], ["<open-help>", "<F1>"], "Open the introductory help page", function () { dactyl.help(); }); - mappings.add([modes.MAIN], ["<A-F1>"], + mappings.add([modes.MAIN], ["<open-single-help>", "<A-F1>"], "Open the single, consolidated help page", function () { ex.helpall(); }); |