From fa397b1642a3e24c34c474776923ab4a380ebb4c Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Thu, 2 Oct 2025 16:37:38 +0200 Subject: [PATCH] fix: add ctrl+space keybind for completion and move SELECT mode to shift+space --- src/keybind/builtin/flow.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/keybind/builtin/flow.json b/src/keybind/builtin/flow.json index bf3abdc..6fe7b6a 100644 --- a/src/keybind/builtin/flow.json +++ b/src/keybind/builtin/flow.json @@ -204,6 +204,7 @@ ["shift+f11", "toggle_highlight_columns"], ["ctrl+f11", "toggle_inspector_view"], ["f12", "goto_definition"], + ["ctrl+space", "completion"], ["ctrl+.", "completion"], ["f34", "toggle_whitespace_mode"], ["escape", "cancel"], @@ -227,7 +228,7 @@ ["kp_page_up", "move_page_up"], ["kp_page_down", "move_page_down"], ["tab", "indent"], - ["ctrl+space", "enter_mode", "select"], + ["shift+space", "enter_mode", "select"], ["\"", "smart_insert_pair", "\"", "\""], ["'", "smart_insert_pair", "'", "'"], @@ -304,7 +305,7 @@ ["ctrl+kp_page_down", "select_scroll_page_down"], ["ctrl+b", "move_to_char", "select_to_char_left"], ["ctrl+t", "move_to_char", "select_to_char_right"], - ["ctrl+space", "enter_mode", "normal"], + ["shift+space", "enter_mode", "normal"], ["ctrl+x", ["cut"], ["enter_mode", "normal"], ["cancel"]], ["ctrl+c", ["copy"], ["enter_mode", "normal"], ["cancel"]], ["escape", ["enter_mode", "normal"], ["cancel"]],