aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-10 21:43:56 +0900
committerGitHub <noreply@github.com>2017-10-10 21:43:56 +0900
commita968a82f08cca388c27fb64608edb6b0190079d4 (patch)
tree9bfd6161b003ff59f2dd29ac788f631ed0698a0c
parent956b5d5a965361df9396131934850b1698461ec2 (diff)
parentc01358dad04e34a7ac3df4eaccb4e02a2d4b66b7 (diff)
Merge pull request #43 from ueokande/fix-36
Fix default keymap
-rw-r--r--src/shared/default-settings.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/default-settings.js b/src/shared/default-settings.js
index 924b3d9..d280185 100644
--- a/src/shared/default-settings.js
+++ b/src/shared/default-settings.js
@@ -15,8 +15,8 @@ export default {
"j": { "type": "scroll.vertically", "count": 1 },
"h": { "type": "scroll.horizonally", "count": -1 },
"l": { "type": "scroll.horizonally", "count": 1 },
- "<C-E>": { "type": "scroll.vertically", "count": -1 },
- "<C-Y>": { "type": "scroll.vertically", "count": 1 },
+ "<C-Y>": { "type": "scroll.vertically", "count": -1 },
+ "<C-E>": { "type": "scroll.vertically", "count": 1 },
"<C-U>": { "type": "scroll.pages", "count": -0.5 },
"<C-D>": { "type": "scroll.pages", "count": 0.5 },
"<C-B>": { "type": "scroll.pages", "count": -1 },