summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorDoug Kearns <dougkearns@gmail.com>2013-03-01 10:09:32 +1100
committerDoug Kearns <dougkearns@gmail.com>2013-03-01 10:09:32 +1100
commit925b08849523e0c69a8582708f5137cabcec8364 (patch)
treee1276e61f0be9852108ed17eb60fbe7ae58e11e9 /common
parentfd5ee858fee43fb23f3818c3ea72f6d197439a4b (diff)
downloadpentadactyl-925b08849523e0c69a8582708f5137cabcec8364.tar.gz
Fix <scroll-left-column>'s mode assignment (COMMAND -> NORMAL).
Diffstat (limited to 'common')
-rw-r--r--common/modules/buffer.jsm2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/modules/buffer.jsm b/common/modules/buffer.jsm
index c6509cce..aaea4ac9 100644
--- a/common/modules/buffer.jsm
+++ b/common/modules/buffer.jsm
@@ -1910,7 +1910,7 @@ var Buffer = Module("Buffer", {
function (args) { buffer.scrollVertical("lines", -Math.max(args.count, 1)); },
{ count: true });
- mappings.add([modes.COMMAND], dactyl.has("mail") ? ["h", "<scroll-left-column>"] : ["h", "<Left>", "<scroll-left-column>"],
+ mappings.add([modes.NORMAL], dactyl.has("mail") ? ["h", "<scroll-left-column>"] : ["h", "<Left>", "<scroll-left-column>"],
"Scroll document to the left",
function (args) { buffer.scrollHorizontal("columns", -Math.max(args.count, 1)); },
{ count: true });