diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-09 21:32:52 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-09 21:32:52 +0900 |
commit | 83a9f2d7ee3b66ff1dcbfad9f73c8581c4fb04e7 (patch) | |
tree | 9ffed1153a9cc372326b386be37cfa8f97e54077 | |
parent | cf36bf192ccbc6ffd175e4dd397b4a9140b7f28b (diff) |
fix operation name
-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 ceacb50..924b3d9 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.lines", "count": -1 }, - "<C-Y>": { "type": "scroll.lines", "count": 1 }, + "<C-E>": { "type": "scroll.vertically", "count": -1 }, + "<C-Y>": { "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 }, |