aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-10 21:19:31 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-10-10 21:19:31 +0900
commitc01358dad04e34a7ac3df4eaccb4e02a2d4b66b7 (patch)
tree9bfd6161b003ff59f2dd29ac788f631ed0698a0c /src
parent956b5d5a965361df9396131934850b1698461ec2 (diff)
fix default keymap
Diffstat (limited to 'src')
-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 },