From 1ade0b1b89bd8291fab747c1a258b32991783003 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20T=C3=A1mara?= Date: Thu, 25 Sep 2025 15:20:08 -0500 Subject: [PATCH] feat: use modal behavior from flow to support helix mode Using sane defaults from flow to b choose buffer using flow default picker f choose file using flow default picker / find in files with flow default pane (ripgrep) --- src/keybind/builtin/helix.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/keybind/builtin/helix.json b/src/keybind/builtin/helix.json index aa7e1ad..fd35500 100644 --- a/src/keybind/builtin/helix.json +++ b/src/keybind/builtin/helix.json @@ -215,7 +215,7 @@ ["space R", "replace_selections_with_clipboard"], ["space ?", "open_command_palette"], ["space f", "find_file"], - ["space b", "buffer_picker"], + ["space b", "switch_buffers"], ["space j", "jumplist_picker"], ["space s", "symbol_picker"], ["space d", "diagnostics_picker"], @@ -223,7 +223,7 @@ ["space '", "last_picker"], ["space y", "copy"], ["space p", "system_paste_after"], - ["space /", "find_in_file"], + ["space /", "find_in_files"], ["space k", "hover"], ["space r", "rename_symbol"], ["space h", "select_references_to_symbol_under_cursor"], @@ -501,8 +501,8 @@ ["space R", "replace_selections_with_clipboard"], ["space ?", "open_command_palette"], - ["space f", "file_picker"], - ["space b", "buffer_picker"], + ["space f", "find_file"], + ["space b", "switch_buffers"], ["space j", "jumplist_picker"], ["space s", "symbol_picker"], ["space d", "diagnostics_picker"], @@ -510,7 +510,7 @@ ["space '", "last_picker"], ["space y", "copy"], ["space p", "system_paste_after"], - ["space /", "find_in_file"], + ["space /", "find_in_files"], ["space k", "hover"], ["space r", "rename_symbol"], ["space h", "select_references_to_symbol_under_cursor"],