diff --git a/common/content/buffer.js b/common/content/buffer.js index 89b2fb9d..8ec666e7 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -1597,21 +1597,21 @@ var Buffer = Module("buffer", { function () { dactyl.clipboardWrite(buffer.uri.spec, true); }); mappings.add([modes.NORMAL], - [""], "Increment last number in URL", + ["", ""], "Increment last number in URL", function (args) { buffer.incrementURL(Math.max(args.count, 1)); }, { count: true }); mappings.add([modes.NORMAL], - [""], "Decrement last number in URL", + ["", ""], "Decrement last number in URL", function (args) { buffer.incrementURL(-Math.max(args.count, 1)); }, { count: true }); - mappings.add([modes.NORMAL], ["gu"], + mappings.add([modes.NORMAL], ["gu", ""], "Go to parent directory", function (args) { buffer.climbUrlPath(Math.max(args.count, 1)); }, { count: true }); - mappings.add([modes.NORMAL], ["gU"], + mappings.add([modes.NORMAL], ["gU", ""], "Go to the root of the website", function () { buffer.climbUrlPath(-1); }); @@ -1629,7 +1629,7 @@ var Buffer = Module("buffer", { "Start caret mode", function () { modes.push(modes.CARET); }); - mappings.add([modes.NORMAL], [""], + mappings.add([modes.NORMAL], ["", ""], "Stop loading the current web page", function () { ex.stop(); }); diff --git a/common/locale/en-US/browsing.xml b/common/locale/en-US/browsing.xml index 482cc1c1..23c85ee1 100644 --- a/common/locale/en-US/browsing.xml +++ b/common/locale/en-US/browsing.xml @@ -223,7 +223,7 @@ want to bypass &dactyl.appName;'s key handling and pass keys directly to - ]]> + ]]> count<C-x> @@ -237,7 +237,7 @@ want to bypass &dactyl.appName;'s key handling and pass keys directly to - ]]> + ]]> count<C-a> @@ -324,7 +324,7 @@ want to bypass &dactyl.appName;'s key handling and pass keys directly to - gu + gu]]> countgu

Go to countth parent directory.

@@ -338,7 +338,7 @@ want to bypass &dactyl.appName;'s key handling and pass keys directly to
- gU + gU]]> gU

Go to the root of the web site.

@@ -394,7 +394,7 @@ want to bypass &dactyl.appName;'s key handling and pass keys directly to

Stopping

- :st :stop]]> + :st :stop]]> <C-c> :stop