command mode entering during edit mode is now forbidden
This commit is contained in:
@@ -2,10 +2,10 @@
|
||||
[keybindings]
|
||||
|
||||
[keybindings.common]
|
||||
save = [":w", "ctrl+s"]
|
||||
quit = [":q", "ctrl+q"]
|
||||
force_quit = [":q!", "ctrl+shift+q"]
|
||||
save_and_quit = [":wq", "ctrl+shift+s"]
|
||||
save = ["ctrl+s"]
|
||||
quit = ["ctrl+q"]
|
||||
force_quit = ["ctrl+shift+q"]
|
||||
save_and_quit = ["ctrl+shift+s"]
|
||||
move_up = ["Up"]
|
||||
move_down = ["Down"]
|
||||
|
||||
@@ -29,6 +29,7 @@ move_line_start = ["0"]
|
||||
move_line_end = ["$"]
|
||||
move_first_line = ["gg"]
|
||||
move_last_line = ["x"]
|
||||
enter_command_mode = [":", "ctrl+;"]
|
||||
|
||||
[keybindings.edit]
|
||||
exit_edit_mode = ["esc","ctrl+e"]
|
||||
@@ -43,7 +44,10 @@ move_right = ["right"]
|
||||
exit_command_mode = ["ctrl+g", "esc"]
|
||||
command_execute = ["enter"]
|
||||
command_backspace = ["backspace"]
|
||||
enter_command_mode = [":", "ctrl+;"]
|
||||
save = ["w"]
|
||||
quit = ["q"]
|
||||
force_quit = ["q!"]
|
||||
save_and_quit = ["wq"]
|
||||
|
||||
[colors]
|
||||
theme = "dark"
|
||||
|
||||
Reference in New Issue
Block a user