From ab5240fd892615a7b660428d0f4074cfbbd44fff Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Sat, 14 Feb 2026 13:26:38 +0100 Subject: [PATCH] refactor: use commond file browser keybinds for open_project_file_tree --- src/keybind/builtin/emacs.json | 1 + src/keybind/builtin/flow.json | 2 +- src/keybind/builtin/helix.json | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/keybind/builtin/emacs.json b/src/keybind/builtin/emacs.json index c76dea2..d57d10e 100644 --- a/src/keybind/builtin/emacs.json +++ b/src/keybind/builtin/emacs.json @@ -6,6 +6,7 @@ ["ctrl+=", "adjust_fontsize", 1.0], ["ctrl+-", "adjust_fontsize", -1.0], ["ctrl+r", "find_file"], + ["ctrl+x d", "open_project_file_tree"], ["ctrl+h ctrl+a", "open_help"], ["ctrl+c ctrl+o", "open_recent_project"], ["ctrl+c g", "find_in_files"], diff --git a/src/keybind/builtin/flow.json b/src/keybind/builtin/flow.json index 652b285..6453eda 100644 --- a/src/keybind/builtin/flow.json +++ b/src/keybind/builtin/flow.json @@ -28,7 +28,7 @@ ["ctrl+w", "close_split"], ["ctrl+o", "open_file"], ["ctrl+e", "open_recent"], - ["ctrl+shift+o", "open_project_file_tree"], + ["ctrl+shift+e", "open_project_file_tree"], ["alt+o", "open_previous_file"], ["ctrl+shift+t", "restore_closed_tab"], ["ctrl+shift+f5", "reload_file"], diff --git a/src/keybind/builtin/helix.json b/src/keybind/builtin/helix.json index c6223b9..56cc684 100644 --- a/src/keybind/builtin/helix.json +++ b/src/keybind/builtin/helix.json @@ -220,6 +220,7 @@ ["page_down", "move_scroll_page_down"], ["space F", "find_file"], + ["space e", "open_project_file_tree"], ["space S", "workspace_symbol_picker"], ["space D", "workspace_diagnostics_picker"], ["space P", "system_paste"],