# pylint: disable=C0111 from qutebrowser.config.configfiles import ConfigAPI # noqa: F401 from qutebrowser.config.config import ConfigContainer # noqa: F401 config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103 c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103 # Open new tabs (middleclick/ctrl+click) in the background. # Type: Bool c.tabs.background = True # Mouse button with which to close tabs. # Type: String # Valid values: # - right: Close tabs on right-click. # - middle: Close tabs on middle-click. # - none: Don't close tabs using the mouse. c.tabs.close_mouse_button = 'middle' # How to behave when the close mouse button is pressed on the tab bar. # Type: String # Valid values: # - new-tab: Open a new tab. # - close-current: Close the current tab. # - close-last: Close the last tab. # - ignore: Don't do anything. c.tabs.close_mouse_button_on_bar = 'new-tab' # Scaling factor for favicons in the tab bar. The tab size is unchanged, # so big favicons also require extra `tabs.padding`. # Type: Float c.tabs.favicons.scale = 1.0 # When to show favicons in the tab bar. When switching this from never # to always/pinned, note that favicons might not be loaded yet, thus # tabs might require a reload to display them. # Type: String # Valid values: # - always: Always show favicons. # - never: Always hide favicons. # - pinned: Show favicons only on pinned tabs. c.tabs.favicons.show = 'pinned' # Maximum stack size to remember for tab switches (-1 for no maximum). # Type: Int c.tabs.focus_stack_size = 10 # Padding (in pixels) for tab indicators. # Type: Padding c.tabs.indicator.padding = {'top': 2, 'bottom': 2, 'left': 0, 'right': 4} # Width (in pixels) of the progress indicator (0 to disable). # Type: Int c.tabs.indicator.width = 3 # How to behave when the last tab is closed. If the # `tabs.tabs_are_windows` setting is set, this is ignored and the # behavior is always identical to the `close` value. # Type: String # Valid values: # - ignore: Don't do anything. # - blank: Load a blank page. # - startpage: Load the start page. # - default-page: Load the default page. # - close: Close the window. c.tabs.last_close = 'blank' # Maximum width (in pixels) of tabs (-1 for no maximum). This setting # only applies when tabs are horizontal. This setting does not apply to # pinned tabs, unless `tabs.pinned.shrink` is False. This setting may # not apply properly if max_width is smaller than the minimum size of # tab contents, or smaller than tabs.min_width. # Type: Int c.tabs.max_width = -1 # Minimum width (in pixels) of tabs (-1 for the default minimum size # behavior). This setting only applies when tabs are horizontal. This # setting does not apply to pinned tabs, unless `tabs.pinned.shrink` is # False. # Type: Int c.tabs.min_width = -1 # When switching tabs, what input mode is applied. # Type: String # Valid values: # - persist: Retain the current mode. # - restore: Restore previously saved mode. # - normal: Always revert to normal mode. c.tabs.mode_on_change = 'normal' # Switch between tabs using the mouse wheel. # Type: Bool c.tabs.mousewheel_switching = False # Position of new tabs opened from another tab. See # `tabs.new_position.stacking` for controlling stacking behavior. # Type: NewTabPosition # Valid values: # - prev: Before the current tab. # - next: After the current tab. # - first: At the beginning. # - last: At the end. c.tabs.new_position.related = 'next' # Stack related tabs on top of each other when opened consecutively. # Only applies for `next` and `prev` values of # `tabs.new_position.related` and `tabs.new_position.unrelated`. # Type: Bool c.tabs.new_position.stacking = True # Position of new tabs which are not opened from another tab. See # `tabs.new_position.stacking` for controlling stacking behavior. # Type: NewTabPosition # Valid values: # - prev: Before the current tab. # - next: After the current tab. # - first: At the beginning. # - last: At the end. c.tabs.new_position.unrelated = 'last' # Padding (in pixels) around text for tabs. # Type: Padding c.tabs.padding = {'top': 0, 'bottom': 0, 'left': 5, 'right': 5} # Force pinned tabs to stay at fixed URL. # Type: Bool c.tabs.pinned.frozen = True # Shrink pinned tabs down to their contents. # Type: Bool c.tabs.pinned.shrink = True # Position of the tab bar. # Type: Position # Valid values: # - top # - bottom # - left # - right c.tabs.position = 'bottom' # Which tab to select when the focused tab is removed. # Type: SelectOnRemove # Valid values: # - prev: Select the tab which came before the closed one (left in horizontal, above in vertical). # - next: Select the tab which came after the closed one (right in horizontal, below in vertical). # - last-used: Select the previously selected tab. c.tabs.select_on_remove = 'next' # When to show the tab bar. # Type: String # Valid values: # - always: Always show the tab bar. # - never: Always hide the tab bar. # - multiple: Hide the tab bar if only one tab is open. # - switching: Show the tab bar when switching tabs. c.tabs.show = 'multiple' # Duration (in milliseconds) to show the tab bar before hiding it when # tabs.show is set to 'switching'. # Type: Int c.tabs.show_switching_delay = 800 # Open a new window for every tab. # Type: Bool c.tabs.tabs_are_windows = False # Alignment of the text inside of tabs. # Type: TextAlignment # Valid values: # - left # - right # - center c.tabs.title.alignment = 'center' # Format to use for the tab title. The following placeholders are # defined: * `{perc}`: Percentage as a string like `[10%]`. * # `{perc_raw}`: Raw percentage, e.g. `10`. * `{current_title}`: Title of # the current web page. * `{title_sep}`: The string `" - "` if a title # is set, empty otherwise. * `{index}`: Index of this tab. * # `{aligned_index}`: Index of this tab padded with spaces to have the # same width. * `{id}`: Internal tab ID of this tab. * `{scroll_pos}`: # Page scroll position. * `{host}`: Host of the current web page. * # `{backend}`: Either `webkit` or `webengine` * `{private}`: Indicates # when private mode is enabled. * `{current_url}`: URL of the current # web page. * `{protocol}`: Protocol (http/https/...) of the current web # page. * `{audio}`: Indicator for audio/mute status. # Type: FormatString c.tabs.title.format = '{audio}{index}: {current_title}' # Format to use for the tab title for pinned tabs. The same placeholders # like for `tabs.title.format` are defined. # Type: FormatString c.tabs.title.format_pinned = '{index}' # Show tooltips on tabs. Note this setting only affects windows opened # after it has been set. # Type: Bool c.tabs.tooltips = True # Number of closed tabs (per window) and closed windows to remember for # :undo (-1 for no maximum). # Type: Int c.tabs.undo_stack_size = 100 # Width (in pixels or as percentage of the window) of the tab bar if # it's vertical. # Type: PercOrInt c.tabs.width = '15%' # Wrap when changing tabs. # Type: Bool c.tabs.wrap = True