feat(vim-mode): simplify vim mode bindings
This commit is contained in:
parent
42bc301426
commit
70c4c78138
1 changed files with 6 additions and 10 deletions
|
@ -34,10 +34,8 @@
|
|||
["/", "find"],
|
||||
["n", "goto_next_match"],
|
||||
["0", "move_begin"],
|
||||
["<S-4>", "move_end"],
|
||||
["$", "move_end"],
|
||||
[":", "open_command_palette"],
|
||||
[";", "open_command_palette"],
|
||||
["<S-;>", "open_command_palette"],
|
||||
["p", "paste"],
|
||||
|
||||
["gd", "goto_definition"],
|
||||
|
@ -45,12 +43,12 @@
|
|||
["gy", "goto_type_definition"],
|
||||
["gg", "move_buffer_begin"],
|
||||
["grn", "rename_symbol"],
|
||||
["g<S-d>", "goto_declaration"],
|
||||
["<S-g>", "move_buffer_end"],
|
||||
["gD", "goto_declaration"],
|
||||
["G", "move_buffer_end"],
|
||||
|
||||
["d<S-4>", "delete_to_end"],
|
||||
["d$", "delete_to_end"],
|
||||
["dd", "cut"],
|
||||
["<S-'><S-->dd", "delete_line"],
|
||||
["\"_dd", "delete_line"],
|
||||
|
||||
["yy", "copy_line"],
|
||||
|
||||
|
@ -96,8 +94,6 @@
|
|||
"on_match_failure": "ignore",
|
||||
"press": [
|
||||
[":", "open_command_palette"],
|
||||
[";", "open_command_palette"],
|
||||
["<S-;>", "open_command_palette"],
|
||||
["b", "open_keybind_config"],
|
||||
["j", "home_menu_down"],
|
||||
["k", "home_menu_up"],
|
||||
|
|
Loading…
Add table
Reference in a new issue