Added Q as a key to return to insert mode.
This commit is contained in:
parent
7b4957616d
commit
ecd495d737
|
@ -75,7 +75,7 @@ and the visual representation of the programs running within it. You can
|
|||
search, mark and copy contents from the display for use in other
|
||||
programs.
|
||||
.PP
|
||||
.IP "\fBescape\fP or \fBctrl-[\fP"
|
||||
.IP "\fBq\fP or \fBescape\fP or \fBctrl-[\fP"
|
||||
enter insert mode
|
||||
.IP "\fBx\fP"
|
||||
activate url hints mode
|
||||
|
|
|
@ -749,6 +749,7 @@ gboolean key_press_cb(VteTerminal *vte, GdkEventKey *event, keybind_info *info)
|
|||
}
|
||||
switch (event->keyval) {
|
||||
case GDK_KEY_Escape:
|
||||
case GDK_KEY_q:
|
||||
exit_command_mode(vte, &info->select);
|
||||
gtk_widget_hide(info->panel.da);
|
||||
gtk_widget_hide(info->panel.panel);
|
||||
|
|
Loading…
Reference in New Issue