fix: add ctrl+space keybind for completion and move SELECT mode to shift+space

This commit is contained in:
CJ van den Berg 2025-10-02 16:37:38 +02:00
parent 5362706b26
commit fa397b1642
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

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