scroll horizonally
This commit is contained in:
parent
36963b1b8b
commit
8c84930ca3
4 changed files with 22 additions and 9 deletions
|
@ -11,8 +11,10 @@ export default {
|
|||
"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 },
|
||||
"k": { "type": "scroll.vertically", "count": -1 },
|
||||
"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-U>": { "type": "scroll.pages", "count": -0.5 },
|
||||
|
|
Reference in a new issue