fix: emacs mode

This commit is contained in:
CJ van den Berg 2024-12-02 21:23:21 +01:00
parent c909a2a50a
commit ec75b5ca6a
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -1,17 +1,16 @@
{ {
"base": { "normal": {
"syntax": "vim",
"press": [ "press": [
["<C-a>", "cursor_line_start"], ["ctrl+a", "smart_move_begin"],
["<C-e>", "cursor_line_end"], ["ctrl+e", "move_end"],
["<C-b>", "cursor_left"], ["ctrl+b", "move_left"],
["<C-f>", "cursor_right"], ["ctrl+f", "move_right"],
["<C-p>", "cursor_up"], ["ctrl+p", "move_up"],
["<C-n>", "cursor_down"], ["ctrl+n", "move_down"],
["<C-x><C-s>", "save"], ["ctrl+x>ctrl+s", "save"],
["<C-x><C-c>", "quit"], ["ctrl+x>ctrl+c", "quit"],
["<C-x>b", "open_recent_files"], ["ctrl+x>b", "open_recent"],
["<A-x>", "open_command_palette"] ["alt+x", "open_command_palette"]
] ]
} }
} }