From c46d7c8d17a3c189f974f562f392e4d5dda3e218 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Mon, 27 Jan 2025 11:13:26 +0100 Subject: [PATCH] feat(emacs): bind switch_buffers to `ctrl+x b` in emacs mode And move open_recent to `ctrl+x ctrl+r`. --- src/keybind/builtin/emacs.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/keybind/builtin/emacs.json b/src/keybind/builtin/emacs.json index 0edf405..cd47455 100644 --- a/src/keybind/builtin/emacs.json +++ b/src/keybind/builtin/emacs.json @@ -35,7 +35,8 @@ ["ctrl+x ctrl+c", "quit"], ["ctrl+x ctrl+s", "save_file"], ["ctrl+x ctrl+c", "quit"], - ["ctrl+x b", "open_recent"], + ["ctrl+x b", "switch_buffers"], + ["ctrl+x ctrl+r", "open_recent"], ["alt+x", "open_command_palette"], ["ctrl+space", "enter_mode", "select"],