feat: use modal behavior from flow to support helix mode

Using sane defaults from flow to

<space>b choose buffer using flow default picker
<space>f choose file using flow default picker
<space>/ find in files with flow default pane (ripgrep)
This commit is contained in:
Igor Támara 2025-09-25 15:20:08 -05:00 committed by CJ van den Berg
parent 2390590279
commit 1ade0b1b89

View file

@ -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"],