Merge pull request #735 from Vulcalien/remove-deprecated-settings-2
Remove more unused settings and update the docs accordingly
This commit is contained in:
commit
7a5fc01594
|
@ -2,12 +2,12 @@
|
|||
.\" Title: terminator
|
||||
.\" Author: [see the "AUTHOR(S)" section]
|
||||
.\" Generator: Asciidoctor 2.0.18
|
||||
.\" Date: 2023-03-30
|
||||
.\" Date: 2023-04-01
|
||||
.\" Manual: Manual for Terminator
|
||||
.\" Source: Terminator
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "TERMINATOR" "1" "2023-03-30" "Terminator" "Manual for Terminator"
|
||||
.TH "TERMINATOR" "1" "2023-04-01" "Terminator" "Manual for Terminator"
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.ss \n[.ss] 0
|
||||
|
@ -264,16 +264,12 @@ Move to previous tab.
|
|||
.RS 4
|
||||
Move to the \fIn\fPext terminal within the same tab.
|
||||
.br
|
||||
If \fBcycle_term_tab\fP is \fBFalse\fP, cycle within the same tab will be
|
||||
disabled.
|
||||
.RE
|
||||
.sp
|
||||
\fBCtrl+Shift+P\fP or \fBCtrl+Shift+Tab\fP
|
||||
.RS 4
|
||||
Move to the \fIp\fPrevious terminal within the same tab.
|
||||
.br
|
||||
If \fBcycle_term_tab\fP is \fBFalse\fP, cycle within the same tab will be
|
||||
disabled.
|
||||
.RE
|
||||
.SS "Organisation"
|
||||
.sp
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
:doctype: manpage
|
||||
:manmanual: Manual for Terminator
|
||||
:mansource: Terminator
|
||||
:revdate: 2023-03-30
|
||||
:revdate: 2023-04-01
|
||||
:docdate: {revdate}
|
||||
|
||||
== NAME
|
||||
|
@ -167,13 +167,9 @@ Move to previous tab.
|
|||
|
||||
*Ctrl+Shift+N* or *Ctrl+Tab*::
|
||||
Move to the __n__ext terminal within the same tab. +
|
||||
If *cycle_term_tab* is *False*, cycle within the same tab will be
|
||||
disabled.
|
||||
|
||||
*Ctrl+Shift+P* or *Ctrl+Shift+Tab*::
|
||||
Move to the __p__revious terminal within the same tab. +
|
||||
If *cycle_term_tab* is *False*, cycle within the same tab will be
|
||||
disabled.
|
||||
|
||||
=== Organisation
|
||||
The following items relate to arranging and resizing terminals.
|
||||
|
|
|
@ -220,7 +220,6 @@ DEFAULTS = {
|
|||
'background_image_align_vert' : 'middle',
|
||||
'backspace_binding' : 'ascii-del',
|
||||
'delete_binding' : 'escape-sequence',
|
||||
'color_scheme' : 'grey_on_black',
|
||||
'cursor_blink' : True,
|
||||
'cursor_shape' : 'block',
|
||||
'cursor_fg_color' : '',
|
||||
|
@ -232,7 +231,6 @@ DEFAULTS = {
|
|||
'foreground_color' : '#aaaaaa',
|
||||
'show_titlebar' : True,
|
||||
'scrollbar_position' : "right",
|
||||
'scroll_background' : True,
|
||||
'scroll_on_keystroke' : True,
|
||||
'scroll_on_output' : False,
|
||||
'scrollback_lines' : 500,
|
||||
|
@ -252,14 +250,11 @@ DEFAULTS = {
|
|||
'bold_is_bright' : False,
|
||||
'cell_height' : 1.0,
|
||||
'cell_width' : 1.0,
|
||||
'focus_on_close' : 'auto',
|
||||
'force_no_bell' : False,
|
||||
'cycle_term_tab' : True,
|
||||
'copy_on_selection' : False,
|
||||
'split_to_group' : False,
|
||||
'autoclean_groups' : True,
|
||||
'http_proxy' : '',
|
||||
'ignore_hosts' : ['localhost','127.0.0.0/8','*.local'],
|
||||
# Titlebar
|
||||
'title_hide_sizetext' : False,
|
||||
'title_transmit_fg_color' : '#ffffff',
|
||||
|
|
|
@ -958,11 +958,6 @@ class PrefsEditor:
|
|||
self.config['login_shell'] = widget.get_active()
|
||||
self.config.save()
|
||||
|
||||
def on_scroll_background_checkbutton_toggled(self, widget):
|
||||
"""Scroll background setting changed"""
|
||||
self.config['scroll_background'] = widget.get_active()
|
||||
self.config.save()
|
||||
|
||||
def on_scroll_on_keystroke_checkbutton_toggled(self, widget):
|
||||
"""Scroll on keystrong setting changed"""
|
||||
self.config['scroll_on_keystroke'] = widget.get_active()
|
||||
|
|
Loading…
Reference in New Issue