This commit is contained in:
Jeff Lance 2021-05-24 23:27:10 +02:00
parent 2c0a10fc5c
commit 1d9b40cc1d
3 changed files with 22 additions and 18 deletions

View File

@ -845,56 +845,56 @@ c.editor.encoding = 'utf-8'
## Font used in the completion categories. ## Font used in the completion categories.
## Type: Font ## Type: Font
c.fonts.completion.category = '14pt monofurbold nerd font mono' c.fonts.completion.category = '12pt Hack Bold Nerd Font Mono'
## Font used in the completion widget. ## Font used in the completion widget.
## Type: Font ## Type: Font
c.fonts.completion.entry = '14pt monofur nerd font mono' c.fonts.completion.entry = '12pt Hack Nerd Font Mono'
## Font used for the debugging console. ## Font used for the debugging console.
## Type: QtFont ## Type: QtFont
c.fonts.debug_console = '14pt monofur nerd font mono' c.fonts.debug_console = '12pt Hack Nerd Font Mono'
## Font used for the downloadbar. ## Font used for the downloadbar.
## Type: Font ## Type: Font
c.fonts.downloads = '14pt monofur nerd font mono' c.fonts.downloads = '12pt Hack Nerd Font Mono'
## Font used for the hints. ## Font used for the hints.
## Type: Font ## Type: Font
c.fonts.hints = 'bold 14pt monofur nerd font mono' c.fonts.hints = 'bold 12pt Hack Nerd Font Mono'
## Font used in the keyhint widget. ## Font used in the keyhint widget.
## Type: Font ## Type: Font
c.fonts.keyhint = '14pt monofur nerd font mono' c.fonts.keyhint = '12pt Hack Nerd Font Mono'
## Font used for error messages. ## Font used for error messages.
## Type: Font ## Type: Font
c.fonts.messages.error = '14pt monofur nerd font mono' c.fonts.messages.error = '12pt Hack Nerd Font Mono'
## Font used for info messages. ## Font used for info messages.
## Type: Font ## Type: Font
c.fonts.messages.info = '14pt monofur nerd font mono' c.fonts.messages.info = '12pt Hack Nerd Font Mono'
## Font used for warning messages. ## Font used for warning messages.
## Type: Font ## Type: Font
c.fonts.messages.warning = '12pt monofur nerd font mono' c.fonts.messages.warning = '11pt Hack Nerd Font Mono'
## Default monospace fonts. Whenever "monospace" is used in a font ## Default monospace fonts. Whenever "monospace" is used in a font
## setting, it's replaced with the fonts listed here. ## setting, it's replaced with the fonts listed here.
## Type: Font ## Type: Font
# c.fonts.monospace = '"Monofur Nerd Font Mono", "DejaVu Sans Mono", Hack, "xos4 Terminus", Terminus, Monospace, Monaco, "Bitstream Vera Sans Mono", "Andale Mono", "Courier New", Courier, "Liberation Mono", monospace, Fixed, Consolas, Terminal' # c.fonts.monospace = '"Hack Nerd Font Mono", "DejaVu Sans Mono", Hack, "xos4 Terminus", Terminus, Monospace, Monaco, "Bitstream Vera Sans Mono", "Andale Mono", "Courier New", Courier, "Liberation Mono", monospace, Fixed, Consolas, Terminal'
## Font used for prompts. ## Font used for prompts.
## Type: Font ## Type: Font
c.fonts.prompts = '12pt monofur nerd font mono' c.fonts.prompts = '11pt Hack Nerd Font Mono'
## Font used in the statusbar. ## Font used in the statusbar.
## Type: Font ## Type: Font
c.fonts.statusbar = '14pt monofur nerd font mono' c.fonts.statusbar = '12pt Hack Nerd Font Mono'
## Font used in the tab bar. ## Font used in the tab bar.
## Type: QtFont ## Type: QtFont
# c.fonts.tabs = '14pt monofur nerd font mono' # c.fonts.tabs = '14pt Hack Nerd Font Mono'
## Font family for cursive fonts. ## Font family for cursive fonts.
## Type: FontFamily ## Type: FontFamily
@ -1524,11 +1524,11 @@ c.url.open_base_url = True
## `:open google qutebrowser`. ## `:open google qutebrowser`.
## Type: Dict ## Type: Dict
c.url.searchengines = {'DEFAULT': 'https://duckduckgo.com/?q={}', c.url.searchengines = {'DEFAULT': 'https://duckduckgo.com/?q={}',
'ddg': 'https://duckduckgo.com/?q={}', 'sdg': 'https://duckduckgo.com/?q={}',
'mb':'https://musicbrainz.org/search?query={}&type=artist&method=indexed', 'smb': 'https://musicbrainz.org/search?query={}&type=artist&method=indexed',
'amz': 'https://www.amazon.fr/search/s?k={}', 'sam': 'https://www.amazon.fr/search/s?k={}',
'lyr': 'https://cse.google.com/cse?cx=004234001817710914369:abwpkdjsfq7&q={}', 'sly': 'https://cse.google.com/cse?cx=004234001817710914369:abwpkdjsfq7&q={}',
'ggl': 'https://www.google.com/search?hl=fr&q={}'} 'sgo': 'https://www.google.com/search?hl=fr&q={}'}
## Page(s) to open at the start. ## Page(s) to open at the start.
## Type: List of FuzzyUrl, or FuzzyUrl ## Type: List of FuzzyUrl, or FuzzyUrl

View File

View File

@ -0,0 +1,4 @@
# Chained commands
def bind_chained(key, *commands):
config.bind(key, ' ;; '.join(commands))