refactor: split keybinds into one file per namespace

This commit is contained in:
CJ van den Berg 2024-11-18 22:59:55 +01:00
parent 45adc6c7ec
commit 729cc696c2
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
6 changed files with 460 additions and 449 deletions

View 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"]
]
}
}