feat(vim): added visual mode movement keybindings to json
This commit is contained in:
parent
21540af8ef
commit
4b8ba080d7
1 changed files with 7 additions and 2 deletions
|
@ -14,12 +14,13 @@
|
|||
["w", "move_word_right_vim"],
|
||||
["e", "move_word_right"],
|
||||
["x", "delete_forward"],
|
||||
["s", ["delete_forward"], ["enter_mode", "insert"]],
|
||||
["u", "undo"],
|
||||
|
||||
["j", "move_down"],
|
||||
["k", "move_up"],
|
||||
["l", "move_right_vim"],
|
||||
["h", "move_left"],
|
||||
["h", "move_left_vim"],
|
||||
["<Space>", "move_right_vim"],
|
||||
|
||||
["i", "enter_mode", "insert"],
|
||||
|
@ -73,7 +74,11 @@
|
|||
"line_numbers": "relative",
|
||||
"cursor": "underline",
|
||||
"press": [
|
||||
["<Esc>", "enter_mode", "normal"]
|
||||
["<Esc>", "enter_mode", "normal"],
|
||||
["k", "select_up"],
|
||||
["j", "select_down"],
|
||||
["h", "select_left"],
|
||||
["l", "select_right"]
|
||||
]
|
||||
},
|
||||
"insert": {
|
||||
|
|
Loading…
Add table
Reference in a new issue