diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-10 21:43:56 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-10 21:43:56 +0900 |
commit | a968a82f08cca388c27fb64608edb6b0190079d4 (patch) | |
tree | 9bfd6161b003ff59f2dd29ac788f631ed0698a0c | |
parent | 956b5d5a965361df9396131934850b1698461ec2 (diff) | |
parent | c01358dad04e34a7ac3df4eaccb4e02a2d4b66b7 (diff) |
Merge pull request #43 from ueokande/fix-36
Fix default keymap
-rw-r--r-- | src/shared/default-settings.js | 4 |
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 }, |