command mode exit coded from hardcoded system

This commit is contained in:
filipriec
2025-02-28 14:44:47 +01:00
parent 3aff4654ec
commit 0af38b6bd5
3 changed files with 27 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ force_quit = [":q!", "ctrl+shift+q"]
save_and_quit = [":wq", "ctrl+shift+s"]
enter_command_mode = [":", "shift+;"]
exit_command_mode = ["ctrl+g", "5"]
# MODE SPECIFIC
# READ ONLY MODE
@@ -26,7 +27,7 @@ move_word_end_prev = ["ge"]
move_line_start = ["0"]
move_line_end = ["$"]
move_first_line = ["gg"]
move_last_line = ["ctrl+g"]
move_last_line = ["x"]
# EDIT MODE
exit_edit_mode = ["esc", "ctrl+e"]