diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-08 15:29:37 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-08 15:29:37 +0900 |
commit | d262fd1a2f5d5c7864175acd54c910a064a42fc3 (patch) | |
tree | 47e554ec89230a06558f490cb22c15b9160ddd19 /src/shared | |
parent | 940f3c7f791b38262563dc05a905b8f7caabf769 (diff) |
support w/W command
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/default-settings.js | 2 | ||||
-rw-r--r-- | src/shared/operations.js | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/shared/default-settings.js b/src/shared/default-settings.js index 3149581..d602117 100644 --- a/src/shared/default-settings.js +++ b/src/shared/default-settings.js @@ -7,6 +7,8 @@ export default { "O": { "type": "command.show.open", "alter": true }, "t": { "type": "command.show.tabopen", "alter": false }, "T": { "type": "command.show.tabopen", "alter": true }, + "w": { "type": "command.show.winopen", "alter": false }, + "W": { "type": "command.show.winopen", "alter": true }, "b": { "type": "command.show.buffer" }, "k": { "type": "scroll.lines", "count": -1 }, "j": { "type": "scroll.lines", "count": 1 }, diff --git a/src/shared/operations.js b/src/shared/operations.js index b68f59d..5e4a1e5 100644 --- a/src/shared/operations.js +++ b/src/shared/operations.js @@ -3,6 +3,7 @@ export default { COMMAND_SHOW: 'command.show', COMMAND_SHOW_OPEN: 'command.show.open', COMMAND_SHOW_TABOPEN: 'command.show.tabopen', + COMMAND_SHOW_WINOPEN: 'command.show.winopen', COMMAND_SHOW_BUFFER: 'command.show.buffer', // Scrolls |