refactor: split keybinds into one file per namespace
This commit is contained in:
parent
45adc6c7ec
commit
729cc696c2
6 changed files with 460 additions and 449 deletions
17
src/keybind/builtin/emacs.json
Normal file
17
src/keybind/builtin/emacs.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"base": {
|
||||
"syntax": "vim",
|
||||
"press": [
|
||||
["<C-a>", "cursor_line_start"],
|
||||
["<C-e>", "cursor_line_end"],
|
||||
["<C-b>", "cursor_left"],
|
||||
["<C-f>", "cursor_right"],
|
||||
["<C-p>", "cursor_up"],
|
||||
["<C-n>", "cursor_down"],
|
||||
["<C-x><C-s>", "save"],
|
||||
["<C-x><C-c>", "quit"],
|
||||
["<C-x>b", "open_recent_files"],
|
||||
["<A-x>", "open_command_palette"]
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue