Fix title edit shortcuts to hopefully not clash with console programs so much
This commit is contained in:
parent
07a8d32227
commit
0298695ef1
|
@ -79,6 +79,8 @@ terminator GTK3:
|
||||||
LP#1520705)
|
LP#1520705)
|
||||||
* Fix scrollbar position on current terminals when changed in
|
* Fix scrollbar position on current terminals when changed in
|
||||||
prefs (Egmont Koblinger, LP#1520761)
|
prefs (Egmont Koblinger, LP#1520761)
|
||||||
|
* Fix title edit shortcuts to hopefully not clash with console
|
||||||
|
programs so much (Seve Boddy, LP#1514089)
|
||||||
|
|
||||||
terminator 0.97:
|
terminator 0.97:
|
||||||
* Allow font dimming in inactive terminals
|
* Allow font dimming in inactive terminals
|
||||||
|
|
|
@ -221,13 +221,13 @@ Decrease font size. \fBNote:\fP This may require you to press shift, depending o
|
||||||
.B Ctrl+Zero (0)
|
.B Ctrl+Zero (0)
|
||||||
Restore font size to original setting.
|
Restore font size to original setting.
|
||||||
.TP
|
.TP
|
||||||
.B Ctrl+W
|
.B Ctrl+Alt+W
|
||||||
Rename window title.
|
Rename window title.
|
||||||
.TP
|
.TP
|
||||||
.B Ctrl+A
|
.B Ctrl+Alt+A
|
||||||
Rename tab title.
|
Rename tab title.
|
||||||
.TP
|
.TP
|
||||||
.B Ctrl+X
|
.B Ctrl+Alt+X
|
||||||
Rename terminal title.
|
Rename terminal title.
|
||||||
.TP
|
.TP
|
||||||
.B Super+1
|
.B Super+1
|
||||||
|
|
|
@ -288,15 +288,15 @@ Default value: \fBUnbound\fR
|
||||||
.TP
|
.TP
|
||||||
.B edit_window_title
|
.B edit_window_title
|
||||||
Edit the current active window's title
|
Edit the current active window's title
|
||||||
Default value: \fB<Ctrl>W\fR
|
Default value: \fB<Ctrl><Alt>W\fR
|
||||||
.TP
|
.TP
|
||||||
.B edit_tab_title
|
.B edit_tab_title
|
||||||
Edit the currently active tab's title
|
Edit the currently active tab's title
|
||||||
Default value: \fB<Ctrl>A\fR
|
Default value: \fB<Ctrl><Alt>A\fR
|
||||||
.TP
|
.TP
|
||||||
.B edit_terminal_title
|
.B edit_terminal_title
|
||||||
Edit the currently active terminal's title
|
Edit the currently active terminal's title
|
||||||
Default value: \fB<Ctrl>X\fR
|
Default value: \fB<Ctrl><Alt>X\fR
|
||||||
.TP
|
.TP
|
||||||
.B full_screen
|
.B full_screen
|
||||||
Toggle the window to a fullscreen window.
|
Toggle the window to a fullscreen window.
|
||||||
|
|
|
@ -191,9 +191,9 @@ DEFAULTS = {
|
||||||
'broadcast_all' : '<Alt>a',
|
'broadcast_all' : '<Alt>a',
|
||||||
'insert_number' : '<Super>1',
|
'insert_number' : '<Super>1',
|
||||||
'insert_padded' : '<Super>0',
|
'insert_padded' : '<Super>0',
|
||||||
'edit_window_title': '<Control>w',
|
'edit_window_title': '<Control><Alt>w',
|
||||||
'edit_tab_title' : '<Control>a',
|
'edit_tab_title' : '<Control><Alt>a',
|
||||||
'edit_terminal_title': '<Control>x',
|
'edit_terminal_title': '<Control><Alt>x',
|
||||||
'layout_launcher' : '<Alt>l',
|
'layout_launcher' : '<Alt>l',
|
||||||
'next_profile' : '',
|
'next_profile' : '',
|
||||||
'previous_profile' : '',
|
'previous_profile' : '',
|
||||||
|
|
Loading…
Reference in New Issue