From de68c1a5d40edef2a70e02fa872f154cdad7ab97 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Fri, 18 Jul 2025 10:46:02 +0200 Subject: [PATCH] fix: remove run_async from flow mode add_cursor_all_matches binding The extra run_async prevents the keybind hint from matching the add_cursor_all_matches command. Not sure why it was bound to run_async anyway so I'll just remove it. --- src/keybind/builtin/flow.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/keybind/builtin/flow.json b/src/keybind/builtin/flow.json index 2a6641b..03f7a9f 100644 --- a/src/keybind/builtin/flow.json +++ b/src/keybind/builtin/flow.json @@ -89,8 +89,8 @@ ["ctrl+shift+d", "dupe_down"], ["ctrl+shift+z", "redo"], ["ctrl+shift+w", "close_file_without_saving"], - ["ctrl+shift+l", "run_async", "add_cursor_all_matches"], - ["ctrl+shift+i", "run_async", "toggle_inspector_view"], + ["ctrl+shift+l", "add_cursor_all_matches"], + ["ctrl+shift+i", "toggle_inspector_view"], ["ctrl+shift+m", "show_diagnostics"], ["ctrl+shift+enter", "smart_insert_line_before"], ["ctrl+shift+end", "select_buffer_end"],