Add binding: ctrl-n -> leave_mode
This commit is contained in:
parent
f52f2f15a9
commit
ee72d682ad
3
TODO
3
TODO
@ -365,9 +365,6 @@ Show and execute userscripts (command execute_userscript).
|
||||
Other
|
||||
-----
|
||||
|
||||
C-n
|
||||
Enter normal mode.
|
||||
|
||||
[n]gc
|
||||
Clear tab n or of current tab, clears the history of the tab and loads about:blank. (command clear_tab, aliases: clear).
|
||||
|
||||
|
@ -628,6 +628,7 @@ DATA = OrderedDict([
|
||||
('keybind.insert', sect.ValueList(
|
||||
types.KeyBindingName(), types.KeyBinding(),
|
||||
('<Escape>', 'leave_mode'),
|
||||
('<Ctrl-N>', 'leave_mode'),
|
||||
('<Ctrl-E>', 'open_editor'),
|
||||
)),
|
||||
|
||||
@ -635,7 +636,7 @@ DATA = OrderedDict([
|
||||
types.KeyBindingName(), types.KeyBinding(),
|
||||
('<Return>', 'follow_hint'),
|
||||
('<Escape>', 'leave_mode'),
|
||||
('<Ctrl-C>', 'leave_mode'),
|
||||
('<Ctrl-N>', 'leave_mode'),
|
||||
)),
|
||||
|
||||
('keybind.passthrough', sect.ValueList(
|
||||
@ -646,6 +647,7 @@ DATA = OrderedDict([
|
||||
('keybind.command', sect.ValueList(
|
||||
types.KeyBindingName(), types.KeyBinding(),
|
||||
('<Escape>', 'leave_mode'),
|
||||
('<Ctrl-N>', 'leave_mode'),
|
||||
('<Up>', 'command_history_prev'),
|
||||
('<Down>', 'command_history_next'),
|
||||
('<Shift-Tab>', 'completion_item_prev'),
|
||||
|
Loading…
Reference in New Issue
Block a user