diff --git a/ChangeLog b/ChangeLog index 6bbb71d8..ae9f466f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/doc/terminator.1 b/doc/terminator.1 index fbc066fb..2cb4251d 100644 --- a/doc/terminator.1 +++ b/doc/terminator.1 @@ -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 diff --git a/doc/terminator_config.5 b/doc/terminator_config.5 index 75510d8a..6dd7d139 100644 --- a/doc/terminator_config.5 +++ b/doc/terminator_config.5 @@ -288,15 +288,15 @@ Default value: \fBUnbound\fR .TP .B edit_window_title Edit the current active window's title -Default value: \fBW\fR +Default value: \fBW\fR .TP .B edit_tab_title Edit the currently active tab's title -Default value: \fBA\fR +Default value: \fBA\fR .TP .B edit_terminal_title Edit the currently active terminal's title -Default value: \fBX\fR +Default value: \fBX\fR .TP .B full_screen Toggle the window to a fullscreen window. diff --git a/terminatorlib/config.py b/terminatorlib/config.py index 59d84ed8..185e0e5b 100755 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -191,9 +191,9 @@ DEFAULTS = { 'broadcast_all' : 'a', 'insert_number' : '1', 'insert_padded' : '0', - 'edit_window_title': 'w', - 'edit_tab_title' : 'a', - 'edit_terminal_title': 'x', + 'edit_window_title': 'w', + 'edit_tab_title' : 'a', + 'edit_terminal_title': 'x', 'layout_launcher' : 'l', 'next_profile' : '', 'previous_profile' : '',