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)
|
||||
* Fix scrollbar position on current terminals when changed in
|
||||
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:
|
||||
* 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)
|
||||
Restore font size to original setting.
|
||||
.TP
|
||||
.B Ctrl+W
|
||||
.B Ctrl+Alt+W
|
||||
Rename window title.
|
||||
.TP
|
||||
.B Ctrl+A
|
||||
.B Ctrl+Alt+A
|
||||
Rename tab title.
|
||||
.TP
|
||||
.B Ctrl+X
|
||||
.B Ctrl+Alt+X
|
||||
Rename terminal title.
|
||||
.TP
|
||||
.B Super+1
|
||||
|
|
|
@ -288,15 +288,15 @@ Default value: \fBUnbound\fR
|
|||
.TP
|
||||
.B edit_window_title
|
||||
Edit the current active window's title
|
||||
Default value: \fB<Ctrl>W\fR
|
||||
Default value: \fB<Ctrl><Alt>W\fR
|
||||
.TP
|
||||
.B edit_tab_title
|
||||
Edit the currently active tab's title
|
||||
Default value: \fB<Ctrl>A\fR
|
||||
Default value: \fB<Ctrl><Alt>A\fR
|
||||
.TP
|
||||
.B edit_terminal_title
|
||||
Edit the currently active terminal's title
|
||||
Default value: \fB<Ctrl>X\fR
|
||||
Default value: \fB<Ctrl><Alt>X\fR
|
||||
.TP
|
||||
.B full_screen
|
||||
Toggle the window to a fullscreen window.
|
||||
|
|
|
@ -191,9 +191,9 @@ DEFAULTS = {
|
|||
'broadcast_all' : '<Alt>a',
|
||||
'insert_number' : '<Super>1',
|
||||
'insert_padded' : '<Super>0',
|
||||
'edit_window_title': '<Control>w',
|
||||
'edit_tab_title' : '<Control>a',
|
||||
'edit_terminal_title': '<Control>x',
|
||||
'edit_window_title': '<Control><Alt>w',
|
||||
'edit_tab_title' : '<Control><Alt>a',
|
||||
'edit_terminal_title': '<Control><Alt>x',
|
||||
'layout_launcher' : '<Alt>l',
|
||||
'next_profile' : '',
|
||||
'previous_profile' : '',
|
||||
|
|
Loading…
Reference in New Issue