]> git.rmz.io Git - dotfiles.git/blob - qutebrowser/config.py
qutebrowser: automatically open PDFs in pdfjs
[dotfiles.git] / qutebrowser / config.py
1 ## Autogenerated config.py
2 ##
3 ## NOTE: config.py is intended for advanced users who are comfortable
4 ## with manually migrating the config file on qutebrowser upgrades. If
5 ## you prefer, you can also configure qutebrowser using the
6 ## :set/:bind/:config-* commands without having to write a config.py
7 ## file.
8 ##
9 ## Documentation:
10 ## qute://help/configuring.html
11 ## qute://help/settings.html
12
13 def in_terminal(cmd: list):
14 """Wraps cmd to be run in the default TERMINAL, as set by environment.
15
16 :cmd: cmd to execute in TERMINAL
17 :returns: A shell command as a list
18 """
19 from os import getenv
20 t = getenv('TERMINAL', 'xterm')
21 return [t, '-e'] + cmd
22
23 try:
24 from qutebrowser.api import interceptor, message
25 from PyQt5.QtCore import QUrl
26
27 def intercept(info: interceptor.Request):
28 url = info.request_url
29 if url.host() == "twitter.com":
30 url.setHost("nitter.eu")
31 message.info("Redirecting to " + url.toString())
32 info.redirect(url)
33 if url.host() == "xkcd.com":
34 url.setHost("m.xkcd.com")
35 message.info("Redirecting to " + url.toString())
36 info.redirect(url)
37 if url.host() == "www.bristolpost.co.uk":
38 url.setUrl("https://outline.com/" + url.toString())
39 message.info("Redirecting to " + url.toString())
40 info.redirect(url)
41
42 interceptor.register(intercept)
43 except ImportError:
44 pass
45
46 ## This is here so configs done via the GUI are still loaded.
47 ## Remove it to not load settings done via the GUI.
48 config.load_autoconfig(True)
49
50 ## Aliases for commands. The keys of the given dictionary are the
51 ## aliases, while the values are the commands they map to.
52 ## Type: Dict
53 c.aliases = {'w': 'session-save',
54 'quit': 'close',
55 'q': 'close',
56 'qa': 'quit',
57 'wq': 'quit --save',
58 'wqa': 'quit --save',
59 'mpv': 'spawn --userscript ~/src/qutebrowser/misc/userscripts/view_in_mpv'
60 }
61
62 ## Time interval (in milliseconds) between auto-saves of
63 ## config/cookies/etc.
64 ## Type: Int
65 # c.auto_save.interval = 15000
66
67 ## Always restore open sites when qutebrowser is reopened. Without this
68 ## option set, `:wq` (`:quit --save`) needs to be used to save open tabs
69 ## (and restore them), while quitting qutebrowser in any other way will
70 ## not save/restore the session. By default, this will save to the
71 ## session which was last loaded. This behavior can be customized via the
72 ## `session.default_name` setting.
73 ## Type: Bool
74 c.auto_save.session = True
75
76 ## Backend to use to display websites. qutebrowser supports two different
77 ## web rendering engines / backends, QtWebEngine and QtWebKit (not
78 ## recommended). QtWebEngine is Qt's official successor to QtWebKit, and
79 ## both the default/recommended backend. It's based on a stripped-down
80 ## Chromium and regularly updated with security fixes and new features by
81 ## the Qt project: https://wiki.qt.io/QtWebEngine QtWebKit was
82 ## qutebrowser's original backend when the project was started. However,
83 ## support for QtWebKit was discontinued by the Qt project with Qt 5.6 in
84 ## 2016. The development of QtWebKit was picked up in an official fork:
85 ## https://github.com/qtwebkit/qtwebkit - however, the project seems to
86 ## have stalled again. The latest release (5.212.0 Alpha 4) from March
87 ## 2020 is based on a WebKit version from 2016, with many known security
88 ## vulnerabilities. Additionally, there is no process isolation and
89 ## sandboxing. Due to all those issues, while support for QtWebKit is
90 ## still available in qutebrowser for now, using it is strongly
91 ## discouraged.
92 ## Type: String
93 ## Valid values:
94 ## - webengine: Use QtWebEngine (based on Chromium - recommended).
95 ## - webkit: Use QtWebKit (based on WebKit, similar to Safari - many known security issues!).
96 # c.backend = 'webengine'
97
98 ## Map keys to other keys, so that they are equivalent in all modes. When
99 ## the key used as dictionary-key is pressed, the binding for the key
100 ## used as dictionary-value is invoked instead. This is useful for global
101 ## remappings of keys, for example to map <Ctrl-[> to <Escape>. NOTE:
102 ## This should only be used if two keys should always be equivalent, i.e.
103 ## for things like <Enter> (keypad) and <Return> (non-keypad). For normal
104 ## command bindings, qutebrowser works differently to vim: You always
105 ## bind keys to commands, usually via `:bind` or `config.bind()`. Instead
106 ## of using this setting, consider finding the command a key is bound to
107 ## (e.g. via `:bind gg`) and then binding the same command to the desired
108 ## key. Note that when a key is bound (via `bindings.default` or
109 ## `bindings.commands`), the mapping is ignored.
110 ## Type: Dict
111 c.bindings.key_mappings = {'<Ctrl-6>': '<Ctrl-^>', '<Ctrl-M>': '<Return>', '<Ctrl-J>': '<Return>', '<Ctrl-I>': '<Tab>', '<Shift-Return>': '<Return>', '<Enter>': '<Return>', '<Shift-Enter>': '<Return>', '<Ctrl-Enter>': '<Ctrl-Return>'}
112
113 ## When to show a changelog after qutebrowser was upgraded.
114 ## Type: String
115 ## Valid values:
116 ## - major: Show changelog for major upgrades (e.g. v2.0.0 -> v3.0.0).
117 ## - minor: Show changelog for major and minor upgrades (e.g. v2.0.0 -> v2.1.0).
118 ## - patch: Show changelog for major, minor and patch upgrades (e.g. v2.0.0 -> v2.0.1).
119 ## - never: Never show changelog after upgrades.
120 c.changelog_after_upgrade = 'patch'
121
122 ## Which algorithm to use for modifying how colors are rendered with
123 ## darkmode. The `lightness-cielab` value was added with QtWebEngine 5.14
124 ## and is treated like `lightness-hsl` with older QtWebEngine versions.
125 ## Type: String
126 ## Valid values:
127 ## - lightness-cielab: Modify colors by converting them to CIELAB color space and inverting the L value. Not available with Qt < 5.14.
128 ## - lightness-hsl: Modify colors by converting them to the HSL color space and inverting the lightness (i.e. the "L" in HSL).
129 ## - brightness-rgb: Modify colors by subtracting each of r, g, and b from their maximum value.
130 # c.colors.webpage.darkmode.algorithm = 'lightness-cielab'
131
132 ## Contrast for dark mode. This only has an effect when
133 ## `colors.webpage.darkmode.algorithm` is set to `lightness-hsl` or
134 ## `brightness-rgb`.
135 ## Type: Float
136 # c.colors.webpage.darkmode.contrast = 0.0
137
138 ## Render all web contents using a dark theme. Example configurations
139 ## from Chromium's `chrome://flags`: - "With simple HSL/CIELAB/RGB-based
140 ## inversion": Set `colors.webpage.darkmode.algorithm` accordingly. -
141 ## "With selective image inversion": Set
142 ## `colors.webpage.darkmode.policy.images` to `smart`. - "With selective
143 ## inversion of non-image elements": Set
144 ## `colors.webpage.darkmode.threshold.text` to 150 and
145 ## `colors.webpage.darkmode.threshold.background` to 205. - "With
146 ## selective inversion of everything": Combines the two variants above.
147 ## Type: Bool
148 # c.colors.webpage.darkmode.enabled = False
149
150 ## Render all colors as grayscale. This only has an effect when
151 ## `colors.webpage.darkmode.algorithm` is set to `lightness-hsl` or
152 ## `brightness-rgb`.
153 ## Type: Bool
154 # c.colors.webpage.darkmode.grayscale.all = False
155
156 ## Desaturation factor for images in dark mode. If set to 0, images are
157 ## left as-is. If set to 1, images are completely grayscale. Values
158 ## between 0 and 1 desaturate the colors accordingly.
159 ## Type: Float
160 # c.colors.webpage.darkmode.grayscale.images = 0.0
161
162 ## Which images to apply dark mode to. With QtWebEngine 5.15.0, this
163 ## setting can cause frequent renderer process crashes due to a
164 ## https://codereview.qt-project.org/c/qt/qtwebengine-
165 ## chromium/+/304211[bug in Qt].
166 ## Type: String
167 ## Valid values:
168 ## - always: Apply dark mode filter to all images.
169 ## - never: Never apply dark mode filter to any images.
170 ## - smart: Apply dark mode based on image content. Not available with Qt 5.15.0.
171 # c.colors.webpage.darkmode.policy.images = 'smart'
172
173 ## Which pages to apply dark mode to. The underlying Chromium setting has
174 ## been removed in QtWebEngine 5.15.3, thus this setting is ignored
175 ## there. Instead, every element is now classified individually.
176 ## Type: String
177 ## Valid values:
178 ## - always: Apply dark mode filter to all frames, regardless of content.
179 ## - smart: Apply dark mode filter to frames based on background color.
180 # c.colors.webpage.darkmode.policy.page = 'smart'
181
182 ## Threshold for inverting background elements with dark mode. Background
183 ## elements with brightness above this threshold will be inverted, and
184 ## below it will be left as in the original, non-dark-mode page. Set to
185 ## 256 to never invert the color or to 0 to always invert it. Note: This
186 ## behavior is the opposite of `colors.webpage.darkmode.threshold.text`!
187 ## Type: Int
188 # c.colors.webpage.darkmode.threshold.background = 0
189
190 ## Threshold for inverting text with dark mode. Text colors with
191 ## brightness below this threshold will be inverted, and above it will be
192 ## left as in the original, non-dark-mode page. Set to 256 to always
193 ## invert text color or to 0 to never invert text color.
194 ## Type: Int
195 # c.colors.webpage.darkmode.threshold.text = 256
196
197 ## Value to use for `prefers-color-scheme:` for websites. The "light"
198 ## value is only available with QtWebEngine 5.15.2+. On older versions,
199 ## it is the same as "auto". The "auto" value is broken on QtWebEngine
200 ## 5.15.2 due to a Qt bug. There, it will fall back to "light"
201 ## unconditionally.
202 ## Type: String
203 ## Valid values:
204 ## - auto: Use the system-wide color scheme setting.
205 ## - light: Force a light theme.
206 ## - dark: Force a dark theme.
207 # c.colors.webpage.preferred_color_scheme = 'auto'
208
209 ## Number of commands to save in the command history. 0: no history / -1:
210 ## unlimited
211 ## Type: Int
212 # c.completion.cmd_history_max_items = 100
213
214 ## Delay (in milliseconds) before updating completions after typing a
215 ## character.
216 ## Type: Int
217 # c.completion.delay = 0
218
219 ## Default filesystem autocomplete suggestions for :open. The elements of
220 ## this list show up in the completion window under the Filesystem
221 ## category when the command line contains `:open` but no argument.
222 ## Type: List of String
223 # c.completion.favorite_paths = []
224
225 ## Height (in pixels or as percentage of the window) of the completion.
226 ## Type: PercOrInt
227 c.completion.height = 150
228
229 ## Minimum amount of characters needed to update completions.
230 ## Type: Int
231 # c.completion.min_chars = 1
232
233 ## Which categories to show (in which order) in the :open completion.
234 ## Type: FlagList
235 ## Valid values:
236 ## - searchengines
237 ## - quickmarks
238 ## - bookmarks
239 ## - history
240 ## - filesystem
241 # c.completion.open_categories = ['searchengines', 'quickmarks', 'bookmarks', 'history', 'filesystem']
242
243 ## Move on to the next part when there's only one possible completion
244 ## left.
245 ## Type: Bool
246 c.completion.quick = False
247
248 ## Padding (in pixels) of the scrollbar handle in the completion window.
249 ## Type: Int
250 # c.completion.scrollbar.padding = 2
251
252 ## Width (in pixels) of the scrollbar in the completion window.
253 ## Type: Int
254 # c.completion.scrollbar.width = 12
255
256 ## When to show the autocompletion window.
257 ## Type: String
258 ## Valid values:
259 ## - always: Whenever a completion is available.
260 ## - auto: Whenever a completion is requested.
261 ## - never: Never.
262 # c.completion.show = 'always'
263
264 ## Shrink the completion to be smaller than the configured size if there
265 ## are no scrollbars.
266 ## Type: Bool
267 c.completion.shrink = True
268
269 ## Format of timestamps (e.g. for the history completion). See
270 ## https://sqlite.org/lang_datefunc.html and
271 ## https://docs.python.org/3/library/datetime.html#strftime-strptime-
272 ## behavior for allowed substitutions, qutebrowser uses both sqlite and
273 ## Python to format its timestamps.
274 ## Type: String
275 # c.completion.timestamp_format = '%Y-%m-%d %H:%M'
276
277 ## Execute the best-matching command on a partial match.
278 ## Type: Bool
279 # c.completion.use_best_match = False
280
281 ## A list of patterns which should not be shown in the history. This only
282 ## affects the completion. Matching URLs are still saved in the history
283 ## (and visible on the `:history` page), but hidden in the completion.
284 ## Changing this setting will cause the completion history to be
285 ## regenerated on the next start, which will take a short while.
286 ## Type: List of UrlPattern
287 # c.completion.web_history.exclude = []
288
289 ## Number of URLs to show in the web history. 0: no history / -1:
290 ## unlimited
291 ## Type: Int
292 # c.completion.web_history.max_items = -1
293
294 ## Require a confirmation before quitting the application.
295 ## Type: ConfirmQuit
296 ## Valid values:
297 ## - always: Always show a confirmation.
298 ## - multiple-tabs: Show a confirmation if multiple tabs are opened.
299 ## - downloads: Show a confirmation if downloads are running
300 ## - never: Never show a confirmation.
301 c.confirm_quit = ['downloads']
302
303 ## Automatically start playing `<video>` elements.
304 ## Type: Bool
305 # c.content.autoplay = True
306
307 ## List of URLs to ABP-style adblocking rulesets. Only used when Brave's
308 ## ABP-style adblocker is used (see `content.blocking.method`). You can
309 ## find an overview of available lists here:
310 ## https://adblockplus.org/en/subscriptions - note that the special
311 ## `subscribe.adblockplus.org` links aren't handled by qutebrowser, you
312 ## will instead need to find the link to the raw `.txt` file (e.g. by
313 ## extracting it from the `location` parameter of the subscribe URL and
314 ## URL-decoding it).
315 ## Type: List of Url
316 # c.content.blocking.adblock.lists = ['https://easylist.to/easylist/easylist.txt', 'https://easylist.to/easylist/easyprivacy.txt']
317
318 ## Enable the ad/host blocker
319 ## Type: Bool
320 # c.content.blocking.enabled = True
321
322 ## Block subdomains of blocked hosts. Note: If only a single subdomain is
323 ## blocked but should be allowed, consider using
324 ## `content.blocking.whitelist` instead.
325 ## Type: Bool
326 # c.content.blocking.hosts.block_subdomains = True
327
328 ## List of URLs to host blocklists for the host blocker. Only used when
329 ## the simple host-blocker is used (see `content.blocking.method`). The
330 ## file can be in one of the following formats: - An `/etc/hosts`-like
331 ## file - One host per line - A zip-file of any of the above, with either
332 ## only one file, or a file named `hosts` (with any extension). It's
333 ## also possible to add a local file or directory via a `file://` URL. In
334 ## case of a directory, all files in the directory are read as adblock
335 ## lists. The file `~/.config/qutebrowser/blocked-hosts` is always read
336 ## if it exists.
337 ## Type: List of Url
338 # c.content.blocking.hosts.lists = ['https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts']
339
340 ## Which method of blocking ads should be used. Support for Adblock Plus
341 ## (ABP) syntax blocklists using Brave's Rust library requires the
342 ## `adblock` Python package to be installed, which is an optional
343 ## dependency of qutebrowser. It is required when either `adblock` or
344 ## `both` are selected.
345 ## Type: String
346 ## Valid values:
347 ## - auto: Use Brave's ABP-style adblocker if available, host blocking otherwise
348 ## - adblock: Use Brave's ABP-style adblocker
349 ## - hosts: Use hosts blocking
350 ## - both: Use both hosts blocking and Brave's ABP-style adblocker
351 # c.content.blocking.method = 'auto'
352
353 ## A list of patterns that should always be loaded, despite being blocked
354 ## by the ad-/host-blocker. Local domains are always exempt from
355 ## adblocking. Note this whitelists otherwise blocked requests, not
356 ## first-party URLs. As an example, if `example.org` loads an ad from
357 ## `ads.example.org`, the whitelist entry could be
358 ## `https://ads.example.org/*`. If you want to disable the adblocker on a
359 ## given page, use the `content.blocking.enabled` setting with a URL
360 ## pattern instead.
361 ## Type: List of UrlPattern
362 # c.content.blocking.whitelist = []
363
364 ## Enable support for the HTML 5 web application cache feature. An
365 ## application cache acts like an HTTP cache in some sense. For documents
366 ## that use the application cache via JavaScript, the loader engine will
367 ## first ask the application cache for the contents, before hitting the
368 ## network.
369 ## Type: Bool
370 # c.content.cache.appcache = True
371
372 ## Maximum number of pages to hold in the global memory page cache. The
373 ## page cache allows for a nicer user experience when navigating forth or
374 ## back to pages in the forward/back history, by pausing and resuming up
375 ## to _n_ pages. For more information about the feature, please refer to:
376 ## https://webkit.org/blog/427/webkit-page-cache-i-the-basics/
377 ## Type: Int
378 # c.content.cache.maximum_pages = 0
379
380 ## Size (in bytes) of the HTTP network cache. Null to use the default
381 ## value. With QtWebEngine, the maximum supported value is 2147483647 (~2
382 ## GB).
383 ## Type: Int
384 # c.content.cache.size = None
385
386 ## Allow websites to read canvas elements. Note this is needed for some
387 ## websites to work properly.
388 ## Type: Bool
389 # c.content.canvas_reading = True
390
391 ## Which cookies to accept. With QtWebEngine, this setting also controls
392 ## other features with tracking capabilities similar to those of cookies;
393 ## including IndexedDB, DOM storage, filesystem API, service workers, and
394 ## AppCache. Note that with QtWebKit, only `all` and `never` are
395 ## supported as per-domain values. Setting `no-3rdparty` or `no-
396 ## unknown-3rdparty` per-domain on QtWebKit will have the same effect as
397 ## `all`. If this setting is used with URL patterns, the pattern gets
398 ## applied to the origin/first party URL of the page making the request,
399 ## not the request URL. With QtWebEngine 5.15.0+, paths will be stripped
400 ## from URLs, so URL patterns using paths will not match. With
401 ## QtWebEngine 5.15.2+, subdomains are additionally stripped as well, so
402 ## you will typically need to set this setting for `example.com` when the
403 ## cookie is set on `somesubdomain.example.com` for it to work properly.
404 ## To debug issues with this setting, start qutebrowser with `--debug
405 ## --logfilter network --debug-flag log-cookies` which will show all
406 ## cookies being set.
407 ## Type: String
408 ## Valid values:
409 ## - all: Accept all cookies.
410 ## - no-3rdparty: Accept cookies from the same origin only. This is known to break some sites, such as GMail.
411 ## - no-unknown-3rdparty: Accept cookies from the same origin only, unless a cookie is already set for the domain. On QtWebEngine, this is the same as no-3rdparty.
412 ## - never: Don't accept cookies at all.
413 c.content.cookies.accept = 'no-3rdparty'
414
415 ## Store cookies.
416 ## Type: Bool
417 # c.content.cookies.store = True
418
419 ## Default encoding to use for websites. The encoding must be a string
420 ## describing an encoding such as _utf-8_, _iso-8859-1_, etc.
421 ## Type: String
422 # c.content.default_encoding = 'iso-8859-1'
423
424 ## Allow websites to share screen content.
425 ## Type: BoolAsk
426 ## Valid values:
427 ## - true
428 ## - false
429 ## - ask
430 # c.content.desktop_capture = 'ask'
431
432 ## Try to pre-fetch DNS entries to speed up browsing.
433 ## Type: Bool
434 # c.content.dns_prefetch = True
435
436 ## Expand each subframe to its contents. This will flatten all the frames
437 ## to become one scrollable page.
438 ## Type: Bool
439 # c.content.frame_flattening = False
440
441 ## Set fullscreen notification overlay timeout in milliseconds. If set to
442 ## 0, no overlay will be displayed.
443 ## Type: Int
444 # c.content.fullscreen.overlay_timeout = 3000
445
446 ## Limit fullscreen to the browser window (does not expand to fill the
447 ## screen).
448 ## Type: Bool
449 # c.content.fullscreen.window = False
450
451 ## Allow websites to request geolocations.
452 ## Type: BoolAsk
453 ## Valid values:
454 ## - true
455 ## - false
456 ## - ask
457 c.content.geolocation = False
458
459 ## Value to send in the `Accept-Language` header. Note that the value
460 ## read from JavaScript is always the global value.
461 ## Type: String
462 c.content.headers.accept_language = 'en-UK;q=1.0, en;q=0.9, de;q=0.7, fr;q=0.7, *;q=0.5'
463
464 ## Custom headers for qutebrowser HTTP requests.
465 ## Type: Dict
466 # c.content.headers.custom = {}
467
468 ## Value to send in the `DNT` header. When this is set to true,
469 ## qutebrowser asks websites to not track your identity. If set to null,
470 ## the DNT header is not sent at all.
471 ## Type: Bool
472 # c.content.headers.do_not_track = True
473
474 ## When to send the Referer header. The Referer header tells websites
475 ## from which website you were coming from when visiting them. Note that
476 ## with QtWebEngine, websites can override this preference by setting the
477 ## `Referrer-Policy:` header, so that any websites visited from them get
478 ## the full referer. No restart is needed with QtWebKit.
479 ## Type: String
480 ## Valid values:
481 ## - always: Always send the Referer.
482 ## - never: Never send the Referer. This is not recommended, as some sites may break.
483 ## - same-domain: Only send the Referer for the same domain. This will still protect your privacy, but shouldn't break any sites. With QtWebEngine, the referer will still be sent for other domains, but with stripped path information.
484 # c.content.headers.referer = 'same-domain'
485
486 ## User agent to send. The following placeholders are defined: *
487 ## `{os_info}`: Something like "X11; Linux x86_64". * `{webkit_version}`:
488 ## The underlying WebKit version (set to a fixed value with
489 ## QtWebEngine). * `{qt_key}`: "Qt" for QtWebKit, "QtWebEngine" for
490 ## QtWebEngine. * `{qt_version}`: The underlying Qt version. *
491 ## `{upstream_browser_key}`: "Version" for QtWebKit, "Chrome" for
492 ## QtWebEngine. * `{upstream_browser_version}`: The corresponding
493 ## Safari/Chrome version. * `{qutebrowser_version}`: The currently
494 ## running qutebrowser version. The default value is equal to the
495 ## unchanged user agent of QtWebKit/QtWebEngine. Note that the value
496 ## read from JavaScript is always the global value. With QtWebEngine
497 ## between 5.12 and 5.14 (inclusive), changing the value exposed to
498 ## JavaScript requires a restart.
499 ## Type: FormatString
500 # c.content.headers.user_agent = 'Mozilla/5.0 ({os_info}) AppleWebKit/{webkit_version} (KHTML, like Gecko) {qt_key}/{qt_version} {upstream_browser_key}/{upstream_browser_version} Safari/{webkit_version}'
501
502 ## Enable hyperlink auditing (`<a ping>`).
503 ## Type: Bool
504 # c.content.hyperlink_auditing = False
505
506 ## Load images automatically in web pages.
507 ## Type: Bool
508 # c.content.images = True
509
510 ## Show javascript alerts.
511 ## Type: Bool
512 # c.content.javascript.alert = True
513
514 ## Allow JavaScript to close tabs.
515 ## Type: Bool
516 # c.content.javascript.can_close_tabs = False
517
518 ## Allow JavaScript to open new tabs without user interaction.
519 ## Type: Bool
520 # c.content.javascript.can_open_tabs_automatically = False
521
522 ## Allow JavaScript to read from or write to the clipboard. With
523 ## QtWebEngine, writing the clipboard as response to a user interaction
524 ## is always allowed.
525 ## Type: String
526 ## Valid values:
527 ## - none: Disable access to clipboard.
528 ## - access: Allow reading from and writing to the clipboard.
529 ## - access-paste: Allow accessing the clipboard and pasting clipboard content.
530 c.content.javascript.clipboard = 'none'
531 config.set('content.javascript.clipboard', 'access', '*://*.gitlab.com/*')
532 config.set('content.javascript.clipboard', 'access', '*://*.github.com/*')
533
534 ## Enable JavaScript.
535 ## Type: Bool
536 # c.content.javascript.enabled = True
537
538 ## Log levels to use for JavaScript console logging messages. When a
539 ## JavaScript message with the level given in the dictionary key is
540 ## logged, the corresponding dictionary value selects the qutebrowser
541 ## logger to use. On QtWebKit, the "unknown" setting is always used. The
542 ## following levels are valid: `none`, `debug`, `info`, `warning`,
543 ## `error`.
544 ## Type: Dict
545 # c.content.javascript.log = {'unknown': 'debug', 'info': 'debug', 'warning': 'debug', 'error': 'debug'}
546
547 ## Javascript messages to *not* show in the UI, despite a corresponding
548 ## `content.javascript.log_message.levels` setting. Both keys and values
549 ## are glob patterns, with the key matching the location of the error,
550 ## and the value matching the error message. By default, the
551 ## https://web.dev/csp/[Content security policy] violations triggered by
552 ## qutebrowser's stylesheet handling are excluded, as those errors are to
553 ## be expected and can't be easily handled by the underlying code.
554 ## Type: Dict
555 # c.content.javascript.log_message.excludes = {'userscript:_qute_stylesheet': ['*Refused to apply inline style because it violates the following Content Security Policy directive: *']}
556
557 ## Javascript message sources/levels to show in the qutebrowser UI. When
558 ## a JavaScript message is logged from a location matching the glob
559 ## pattern given in the key, and is from one of the levels listed as
560 ## value, it's surfaced as a message in the qutebrowser UI. By default,
561 ## errors happening in qutebrowser internally are shown to the user.
562 ## Type: Dict
563 # c.content.javascript.log_message.levels = {'qute:*': ['error'], 'userscript:GM-*': [], 'userscript:*': ['error']}
564
565 ## Use the standard JavaScript modal dialog for `alert()` and
566 ## `confirm()`.
567 ## Type: Bool
568 # c.content.javascript.modal_dialog = False
569
570 ## Show javascript prompts.
571 ## Type: Bool
572 # c.content.javascript.prompt = True
573
574 ## Allow locally loaded documents to access other local URLs.
575 ## Type: Bool
576 # c.content.local_content_can_access_file_urls = True
577
578 ## Allow locally loaded documents to access remote URLs.
579 ## Type: Bool
580 # c.content.local_content_can_access_remote_urls = False
581
582 ## Enable support for HTML 5 local storage and Web SQL.
583 ## Type: Bool
584 # c.content.local_storage = True
585
586 ## Allow websites to record audio.
587 ## Type: BoolAsk
588 ## Valid values:
589 ## - true
590 ## - false
591 ## - ask
592 # c.content.media.audio_capture = 'ask'
593
594 ## Allow websites to record audio and video.
595 ## Type: BoolAsk
596 ## Valid values:
597 ## - true
598 ## - false
599 ## - ask
600 # c.content.media.audio_video_capture = 'ask'
601
602 ## Allow websites to record video.
603 ## Type: BoolAsk
604 ## Valid values:
605 ## - true
606 ## - false
607 ## - ask
608 # c.content.media.video_capture = 'ask'
609
610 ## Allow websites to lock your mouse pointer.
611 ## Type: BoolAsk
612 ## Valid values:
613 ## - true
614 ## - false
615 ## - ask
616 # c.content.mouse_lock = 'ask'
617
618 ## Automatically mute tabs. Note that if the `:tab-mute` command is used,
619 ## the mute status for the affected tab is now controlled manually, and
620 ## this setting doesn't have any effect.
621 ## Type: Bool
622 # c.content.mute = False
623
624 ## Netrc-file for HTTP authentication. If unset, `~/.netrc` is used.
625 ## Type: File
626 # c.content.netrc_file = None
627
628 ## Allow websites to show notifications.
629 ## Type: BoolAsk
630 ## Valid values:
631 ## - true
632 ## - false
633 ## - ask
634 c.content.notifications.enabled = 'ask'
635 config.set('content.notifications.enabled', True, '*://*.gitlab.com/*')
636 config.set('content.notifications.enabled', True, '*://*.google.com/*')
637
638 ## What notification presenter to use for web notifications. Note that
639 ## not all implementations support all features of notifications: - With
640 ## PyQt 5.14, any setting other than `qt` does not support the `click`
641 ## and `close` events, as well as the `tag` option to replace existing
642 ## notifications. - The `qt` and `systray` options only support showing
643 ## one notification at the time and ignore the `tag` option to replace
644 ## existing notifications. - The `herbe` option only supports showing one
645 ## notification at the time and doesn't show icons. - The `messages`
646 ## option doesn't show icons and doesn't support the `click` and
647 ## `close` events.
648 ## Type: String
649 ## Valid values:
650 ## - auto: Tries `libnotify`, `systray` and `messages`, uses the first one available without showing error messages.
651 ## - qt: Use Qt's native notification presenter, based on a system tray icon. Switching from or to this value requires a restart of qutebrowser. Recommended over `systray` on PyQt 5.14.
652 ## - libnotify: Shows messages via DBus in a libnotify-compatible way. If DBus isn't available, falls back to `systray` or `messages`, but shows an error message.
653 ## - systray: Use a notification presenter based on a systray icon. Falls back to `libnotify` or `messages` if not systray is available. This is a reimplementation of the `qt` setting value, but with the possibility to switch to it at runtime.
654 ## - messages: Show notifications as qutebrowser messages. Most notification features aren't available.
655 ## - herbe: (experimental!) Show notifications using herbe (github.com/dudik/herbe). Most notification features aren't available.
656 # c.content.notifications.presenter = 'auto'
657
658 ## Whether to show the origin URL for notifications. Note that URL
659 ## patterns with this setting only get matched against the origin part of
660 ## the URL, so e.g. paths in patterns will never match. Note that with
661 ## the `qt` presenter, origins are never shown.
662 ## Type: Bool
663 # c.content.notifications.show_origin = True
664
665 ## Display PDF files via PDF.js in the browser without showing a download
666 ## prompt. Note that the files can still be downloaded by clicking the
667 ## download button in the pdf.js viewer. With this set to `false`, the
668 ## `:prompt-open-download --pdfjs` command (bound to `<Ctrl-p>` by
669 ## default) can be used in the download prompt.
670 ## Type: Bool
671 c.content.pdfjs = True
672
673 ## Allow websites to request persistent storage quota via
674 ## `navigator.webkitPersistentStorage.requestQuota`.
675 ## Type: BoolAsk
676 ## Valid values:
677 ## - true
678 ## - false
679 ## - ask
680 # c.content.persistent_storage = 'ask'
681
682 ## Enable plugins in Web pages.
683 ## Type: Bool
684 # c.content.plugins = False
685
686 ## Request websites to minimize non-essentials animations and motion.
687 ## This results in the `prefers-reduced-motion` CSS media query to
688 ## evaluate to `reduce` (rather than `no-preference`). On Windows, if
689 ## this setting is set to False, the system-wide animation setting is
690 ## considered.
691 ## Type: Bool
692 # c.content.prefers_reduced_motion = False
693
694 ## Draw the background color and images also when the page is printed.
695 ## Type: Bool
696 # c.content.print_element_backgrounds = True
697
698 ## Open new windows in private browsing mode which does not record
699 ## visited pages.
700 ## Type: Bool
701 # c.content.private_browsing = False
702
703 ## Proxy to use. In addition to the listed values, you can use a
704 ## `socks://...` or `http://...` URL. Note that with QtWebEngine, it will
705 ## take a couple of seconds until the change is applied, if this value is
706 ## changed at runtime. Authentication for SOCKS proxies isn't supported
707 ## due to Chromium limitations.
708 ## Type: Proxy
709 ## Valid values:
710 ## - system: Use the system wide proxy.
711 ## - none: Don't use any proxy
712 # c.content.proxy = 'system'
713
714 ## Send DNS requests over the configured proxy.
715 ## Type: Bool
716 # c.content.proxy_dns_requests = True
717
718 ## Allow websites to register protocol handlers via
719 ## `navigator.registerProtocolHandler`.
720 ## Type: BoolAsk
721 ## Valid values:
722 ## - true
723 ## - false
724 ## - ask
725 # c.content.register_protocol_handler = 'ask'
726 with config.pattern('*://mail.google.com/*') as p:
727 p.content.register_protocol_handler = False
728 with config.pattern('*://calendar.google.com/*') as p:
729 p.content.register_protocol_handler = False
730
731 ## Enable quirks (such as faked user agent headers) needed to get
732 ## specific sites to work properly.
733 ## Type: Bool
734 # c.content.site_specific_quirks.enabled = True
735
736 ## Disable a list of named quirks. The js-string-replaceall quirk is
737 ## needed for Nextcloud Calendar < 2.2.0 with QtWebEngine < 5.15.3.
738 ## However, the workaround is not fully compliant to the ECMAScript spec
739 ## and might cause issues on other websites, so it's disabled by default.
740 ## Type: FlagList
741 ## Valid values:
742 ## - ua-whatsapp
743 ## - ua-google
744 ## - ua-slack
745 ## - ua-googledocs
746 ## - js-whatsapp-web
747 ## - js-discord
748 ## - js-string-replaceall
749 ## - js-globalthis
750 ## - js-object-fromentries
751 ## - js-array-at
752 ## - misc-krunker
753 ## - misc-mathml-darkmode
754 # c.content.site_specific_quirks.skip = ['js-string-replaceall']
755
756 ## How to proceed on TLS certificate errors.
757 ## Type: String
758 ## Valid values:
759 ## - ask: Ask how to proceed for every certificate error (unless non-overridable due to HSTS).
760 ## - ask-block-thirdparty: Ask how to proceed for normal page loads, but silently block resource loads.
761 ## - block: Automatically block loading on certificate errors.
762 ## - load-insecurely: Force loading pages despite certificate errors. This is *insecure* and should be avoided. Instead of using this, consider fixing the underlying issue or importing a self-signed certificate via `certutil` (or Chromium) instead.
763 # c.content.tls.certificate_errors = 'ask'
764
765 ## How navigation requests to URLs with unknown schemes are handled.
766 ## Type: String
767 ## Valid values:
768 ## - disallow: Disallows all navigation requests to URLs with unknown schemes.
769 ## - allow-from-user-interaction: Allows navigation requests to URLs with unknown schemes that are issued from user-interaction (like a mouse-click), whereas other navigation requests (for example from JavaScript) are suppressed.
770 ## - allow-all: Allows all navigation requests to URLs with unknown schemes.
771 # c.content.unknown_url_scheme_policy = 'allow-from-user-interaction'
772
773 ## List of user stylesheet filenames to use.
774 ## Type: List of File, or File
775 # c.content.user_stylesheets = []
776
777 ## Enable WebGL.
778 ## Type: Bool
779 # c.content.webgl = True
780
781 ## Which interfaces to expose via WebRTC.
782 ## Type: String
783 ## Valid values:
784 ## - all-interfaces: WebRTC has the right to enumerate all interfaces and bind them to discover public interfaces.
785 ## - default-public-and-private-interfaces: WebRTC should only use the default route used by http. This also exposes the associated default private address. Default route is the route chosen by the OS on a multi-homed endpoint.
786 ## - default-public-interface-only: WebRTC should only use the default route used by http. This doesn't expose any local addresses.
787 ## - disable-non-proxied-udp: WebRTC should only use TCP to contact peers or servers unless the proxy server supports UDP. This doesn't expose any local addresses either.
788 # c.content.webrtc_ip_handling_policy = 'all-interfaces'
789
790 ## Monitor load requests for cross-site scripting attempts. Suspicious
791 ## scripts will be blocked and reported in the devtools JavaScript
792 ## console. Note that bypasses for the XSS auditor are widely known and
793 ## it can be abused for cross-site info leaks in some scenarios, see:
794 ## https://www.chromium.org/developers/design-documents/xss-auditor
795 ## Type: Bool
796 # c.content.xss_auditing = False
797
798 ## Directory to save downloads to. If unset, a sensible OS-specific
799 ## default is used.
800 ## Type: Directory
801 c.downloads.location.directory = "~/downloads"
802
803 ## Prompt the user for the download location. If set to false,
804 ## `downloads.location.directory` will be used.
805 ## Type: Bool
806 # c.downloads.location.prompt = True
807
808 ## Remember the last used download directory.
809 ## Type: Bool
810 # c.downloads.location.remember = True
811
812 ## What to display in the download filename input.
813 ## Type: String
814 ## Valid values:
815 ## - path: Show only the download path.
816 ## - filename: Show only download filename.
817 ## - both: Show download path and filename.
818 # c.downloads.location.suggestion = 'path'
819
820 ## Default program used to open downloads. If null, the default internal
821 ## handler is used. Any `{}` in the string will be expanded to the
822 ## filename, else the filename will be appended.
823 ## Type: String
824 c.downloads.open_dispatcher = "rifle"
825
826 ## Where to show the downloaded files.
827 ## Type: VerticalPosition
828 ## Valid values:
829 ## - top
830 ## - bottom
831 # c.downloads.position = 'top'
832
833 ## Automatically abort insecure (HTTP) downloads originating from secure
834 ## (HTTPS) pages. For per-domain settings, the relevant URL is the URL
835 ## initiating the download, not the URL the download itself is coming
836 ## from. It's not recommended to set this setting to false globally.
837 ## Type: Bool
838 # c.downloads.prevent_mixed_content = True
839
840 ## Duration (in milliseconds) to wait before removing finished downloads.
841 ## If set to -1, downloads are never removed.
842 ## Type: Int
843 # c.downloads.remove_finished = -1
844
845 ## Editor (and arguments) to use for the `edit-*` commands. The following
846 ## placeholders are defined: * `{file}`: Filename of the file to be
847 ## edited. * `{line}`: Line in which the caret is found in the text. *
848 ## `{column}`: Column in which the caret is found in the text. *
849 ## `{line0}`: Same as `{line}`, but starting from index 0. * `{column0}`:
850 ## Same as `{column}`, but starting from index 0.
851 ## Type: ShellCommand
852 c.editor.command = in_terminal(['vim', '{file}', '-c', 'normal {line}G{column0}l'])
853
854 ## Encoding to use for the editor.
855 ## Type: Encoding
856 # c.editor.encoding = 'utf-8'
857
858 ## Delete the temporary file upon closing the editor.
859 ## Type: Bool
860 # c.editor.remove_file = True
861
862 ## Command (and arguments) to use for selecting a single folder in forms.
863 ## The command should write the selected folder path to the specified
864 ## file or stdout. The following placeholders are defined: * `{}`:
865 ## Filename of the file to be written to. If not contained in any
866 ## argument, the standard output of the command is read instead.
867 ## Type: ShellCommand
868 c.fileselect.folder.command = in_terminal(['ranger', '--choosedir={}'])
869
870 ## Handler for selecting file(s) in forms. If `external`, then the
871 ## commands specified by `fileselect.single_file.command`,
872 ## `fileselect.multiple_files.command` and `fileselect.folder.command`
873 ## are used to select one file, multiple files, and folders,
874 ## respectively.
875 ## Type: String
876 ## Valid values:
877 ## - default: Use the default file selector.
878 ## - external: Use an external command.
879 c.fileselect.handler = 'external'
880
881 ## Command (and arguments) to use for selecting multiple files in forms.
882 ## The command should write the selected file paths to the specified file
883 ## or to stdout, separated by newlines. The following placeholders are
884 ## defined: * `{}`: Filename of the file to be written to. If not
885 ## contained in any argument, the standard output of the command is
886 ## read instead.
887 ## Type: ShellCommand
888 c.fileselect.multiple_files.command = in_terminal(['ranger', '--choosefiles={}'])
889
890 ## Command (and arguments) to use for selecting a single file in forms.
891 ## The command should write the selected file path to the specified file
892 ## or stdout. The following placeholders are defined: * `{}`: Filename of
893 ## the file to be written to. If not contained in any argument, the
894 ## standard output of the command is read instead.
895 ## Type: ShellCommand
896 c.fileselect.single_file.command = in_terminal(['ranger', '--choosefile={}'])
897
898 ## Font used in the completion categories.
899 ## Type: Font
900 # c.fonts.completion.category = 'bold default_size default_family'
901
902 ## Font used in the completion widget.
903 ## Type: Font
904 # c.fonts.completion.entry = 'default_size default_family'
905
906 ## Font used for the context menu. If set to null, the Qt default is
907 ## used.
908 ## Type: Font
909 # c.fonts.contextmenu = None
910
911 ## Font used for the debugging console.
912 ## Type: Font
913 # c.fonts.debug_console = 'default_size default_family'
914
915 ## Default font families to use. Whenever "default_family" is used in a
916 ## font setting, it's replaced with the fonts listed here. If set to an
917 ## empty value, a system-specific monospace default is used.
918 ## Type: List of Font, or Font
919 c.fonts.default_family = ["Fira Code"]
920
921 ## Default font size to use. Whenever "default_size" is used in a font
922 ## setting, it's replaced with the size listed here. Valid values are
923 ## either a float value with a "pt" suffix, or an integer value with a
924 ## "px" suffix.
925 ## Type: String
926 # c.fonts.default_size = '10pt'
927
928 ## Font used for the downloadbar.
929 ## Type: Font
930 # c.fonts.downloads = 'default_size default_family'
931
932 ## Font used for the hints.
933 ## Type: Font
934 # c.fonts.hints = 'bold default_size default_family'
935
936 ## Font used in the keyhint widget.
937 ## Type: Font
938 # c.fonts.keyhint = 'default_size default_family'
939
940 ## Font used for error messages.
941 ## Type: Font
942 # c.fonts.messages.error = 'default_size default_family'
943
944 ## Font used for info messages.
945 ## Type: Font
946 # c.fonts.messages.info = 'default_size default_family'
947
948 ## Font used for warning messages.
949 ## Type: Font
950 # c.fonts.messages.warning = 'default_size default_family'
951
952 ## Font used for prompts.
953 ## Type: Font
954 # c.fonts.prompts = 'default_size sans-serif'
955
956 ## Font used in the statusbar.
957 ## Type: Font
958 # c.fonts.statusbar = 'default_size default_family'
959
960 ## Font used for selected tabs.
961 ## Type: Font
962 # c.fonts.tabs.selected = 'default_size default_family'
963
964 ## Font used for unselected tabs.
965 ## Type: Font
966 # c.fonts.tabs.unselected = 'default_size default_family'
967
968 ## Font family for cursive fonts.
969 ## Type: FontFamily
970 # c.fonts.web.family.cursive = ''
971
972 ## Font family for fantasy fonts.
973 ## Type: FontFamily
974 # c.fonts.web.family.fantasy = ''
975
976 ## Font family for fixed fonts.
977 ## Type: FontFamily
978 # c.fonts.web.family.fixed = ''
979
980 ## Font family for sans-serif fonts.
981 ## Type: FontFamily
982 # c.fonts.web.family.sans_serif = ''
983
984 ## Font family for serif fonts.
985 ## Type: FontFamily
986 # c.fonts.web.family.serif = ''
987
988 ## Font family for standard fonts.
989 ## Type: FontFamily
990 # c.fonts.web.family.standard = ''
991
992 ## Default font size (in pixels) for regular text.
993 ## Type: Int
994 # c.fonts.web.size.default = 16
995
996 ## Default font size (in pixels) for fixed-pitch text.
997 ## Type: Int
998 # c.fonts.web.size.default_fixed = 13
999
1000 ## Hard minimum font size (in pixels).
1001 ## Type: Int
1002 # c.fonts.web.size.minimum = 0
1003
1004 ## Minimum logical font size (in pixels) that is applied when zooming
1005 ## out.
1006 ## Type: Int
1007 # c.fonts.web.size.minimum_logical = 6
1008
1009 ## When a hint can be automatically followed without pressing Enter.
1010 ## Type: String
1011 ## Valid values:
1012 ## - always: Auto-follow whenever there is only a single hint on a page.
1013 ## - unique-match: Auto-follow whenever there is a unique non-empty match in either the hint string (word mode) or filter (number mode).
1014 ## - full-match: Follow the hint when the user typed the whole hint (letter, word or number mode) or the element's text (only in number mode).
1015 ## - never: The user will always need to press Enter to follow a hint.
1016 # c.hints.auto_follow = 'unique-match'
1017
1018 ## Duration (in milliseconds) to ignore normal-mode key bindings after a
1019 ## successful auto-follow.
1020 ## Type: Int
1021 # c.hints.auto_follow_timeout = 0
1022
1023 ## CSS border value for hints.
1024 ## Type: String
1025 # c.hints.border = '1px solid #E3BE23'
1026
1027 ## Characters used for hint strings.
1028 ## Type: UniqueCharString
1029 c.hints.chars = 'aoeuidhtns'
1030
1031 ## Dictionary file to be used by the word hints.
1032 ## Type: File
1033 # c.hints.dictionary = '/usr/share/dict/words'
1034
1035 ## Which implementation to use to find elements to hint.
1036 ## Type: String
1037 ## Valid values:
1038 ## - javascript: Better but slower
1039 ## - python: Slightly worse but faster
1040 # c.hints.find_implementation = 'python'
1041
1042 ## Hide unmatched hints in rapid mode.
1043 ## Type: Bool
1044 # c.hints.hide_unmatched_rapid_hints = True
1045
1046 ## Leave hint mode when starting a new page load.
1047 ## Type: Bool
1048 # c.hints.leave_on_load = False
1049
1050 ## Minimum number of characters used for hint strings.
1051 ## Type: Int
1052 c.hints.min_chars = 2
1053
1054 ## Mode to use for hints.
1055 ## Type: String
1056 ## Valid values:
1057 ## - number: Use numeric hints. (In this mode you can also type letters from the hinted element to filter and reduce the number of elements that are hinted.)
1058 ## - letter: Use the characters in the `hints.chars` setting.
1059 ## - word: Use hints words based on the html elements and the extra words.
1060 # c.hints.mode = 'letter'
1061
1062 ## Comma-separated list of regular expressions to use for 'next' links.
1063 ## Type: List of Regex
1064 # c.hints.next_regexes = ['\\bnext\\b', '\\bmore\\b', '\\bnewer\\b', '\\b[>→≫]\\b', '\\b(>>|»)\\b', '\\bcontinue\\b']
1065
1066 ## Padding (in pixels) for hints.
1067 ## Type: Padding
1068 # c.hints.padding = {'top': 0, 'bottom': 0, 'left': 3, 'right': 3}
1069
1070 ## Comma-separated list of regular expressions to use for 'prev' links.
1071 ## Type: List of Regex
1072 # c.hints.prev_regexes = ['\\bprev(ious)?\\b', '\\bback\\b', '\\bolder\\b', '\\b[<←≪]\\b', '\\b(<<|«)\\b']
1073
1074 ## Rounding radius (in pixels) for the edges of hints.
1075 ## Type: Int
1076 # c.hints.radius = 3
1077
1078 ## Scatter hint key chains (like Vimium) or not (like dwb). Ignored for
1079 ## number hints.
1080 ## Type: Bool
1081 c.hints.scatter = False
1082
1083 ## CSS selectors used to determine which elements on a page should have
1084 ## hints.
1085 ## Type: Dict
1086 c.hints.selectors = {'all': ['a', 'area', 'textarea', 'select',
1087 'input:not([type="hidden"])', 'button', 'frame',
1088 'iframe', 'img', 'link', 'summary',
1089 '[contenteditable]:not([contenteditable="false"])',
1090 '[onclick]', '[onmousedown]', '[role="link"]',
1091 '[role="option"]', '[role="button"]',
1092 '[role="tab"]', '[role="checkbox"]',
1093 '[role="menuitem"]', '[role="menuitemcheckbox"]',
1094 '[role="menuitemradio"]', '[role="treeitem"]',
1095 '[ng-click]', '[ngClick]', '[data-ng-click]',
1096 '[x-ng-click]', '[tabindex]:not([tabindex="-1"])'],
1097 'links': ['a[href]', 'area[href]', 'link[href]', '[role="link"][href]'],
1098 'images': ['img'],
1099 'media': ['audio', 'img', 'video'],
1100 'url': ['[src]', '[href]'],
1101 'inputs': ['input[type="text"]', 'input[type="date"]',
1102 'input[type="datetime-local"]',
1103 'input[type="email"]', 'input[type="month"]',
1104 'input[type="number"]', 'input[type="password"]',
1105 'input[type="search"]', 'input[type="tel"]',
1106 'input[type="time"]', 'input[type="url"]',
1107 'input[type="week"]', 'input:not([type])',
1108 '[contenteditable]:not([contenteditable="false"])',
1109 'textarea']
1110 }
1111
1112 ## Make characters in hint strings uppercase.
1113 ## Type: Bool
1114 # c.hints.uppercase = False
1115
1116 ## Maximum time (in minutes) between two history items for them to be
1117 ## considered being from the same browsing session. Items with less time
1118 ## between them are grouped when being displayed in `:history`. Use -1 to
1119 ## disable separation.
1120 ## Type: Int
1121 # c.history_gap_interval = 30
1122
1123 ## Allow Escape to quit the crash reporter.
1124 ## Type: Bool
1125 # c.input.escape_quits_reporter = True
1126
1127 ## Which unbound keys to forward to the webview in normal mode.
1128 ## Type: String
1129 ## Valid values:
1130 ## - all: Forward all unbound keys.
1131 ## - auto: Forward unbound non-alphanumeric keys.
1132 ## - none: Don't forward any keys.
1133 # c.input.forward_unbound_keys = 'auto'
1134
1135 ## Enter insert mode if an editable element is clicked.
1136 ## Type: Bool
1137 # c.input.insert_mode.auto_enter = True
1138
1139 ## Leave insert mode if a non-editable element is clicked.
1140 ## Type: Bool
1141 # c.input.insert_mode.auto_leave = True
1142
1143 ## Automatically enter insert mode if an editable element is focused
1144 ## after loading the page.
1145 ## Type: Bool
1146 # c.input.insert_mode.auto_load = False
1147
1148 ## Leave insert mode when starting a new page load. Patterns may be
1149 ## unreliable on this setting, and they may match the url you are
1150 ## navigating to, or the URL you are navigating from.
1151 ## Type: Bool
1152 c.input.insert_mode.leave_on_load = True
1153
1154 ## Switch to insert mode when clicking flash and other plugins.
1155 ## Type: Bool
1156 # c.input.insert_mode.plugins = False
1157
1158 ## Include hyperlinks in the keyboard focus chain when tabbing.
1159 ## Type: Bool
1160 # c.input.links_included_in_focus_chain = True
1161
1162 ## Interpret number prefixes as counts for bindings. This enables for vi-
1163 ## like bindings that can be prefixed with a number to indicate a count.
1164 ## Disabling it allows for emacs-like bindings where number keys are
1165 ## passed through (according to `input.forward_unbound_keys`) instead.
1166 ## Type: Bool
1167 # c.input.match_counts = True
1168
1169 ## Whether the underlying Chromium should handle media keys. On Linux,
1170 ## disabling this also disables Chromium's MPRIS integration.
1171 ## Type: Bool
1172 # c.input.media_keys = True
1173
1174 ## Mode to change to when focusing on a tab/URL changes.
1175 ## Type: String
1176 ## Valid values:
1177 ## - normal
1178 ## - insert
1179 ## - passthrough
1180 # c.input.mode_override = None
1181
1182 ## Enable back and forward buttons on the mouse.
1183 ## Type: Bool
1184 # c.input.mouse.back_forward_buttons = True
1185
1186 ## Enable Opera-like mouse rocker gestures. This disables the context
1187 ## menu.
1188 ## Type: Bool
1189 # c.input.mouse.rocker_gestures = False
1190
1191 ## Timeout (in milliseconds) for partially typed key bindings. If the
1192 ## current input forms only partial matches, the keystring will be
1193 ## cleared after this time. If set to 0, partially typed bindings are
1194 ## never cleared.
1195 ## Type: Int
1196 # c.input.partial_timeout = 0
1197
1198 ## Enable spatial navigation. Spatial navigation consists in the ability
1199 ## to navigate between focusable elements, such as hyperlinks and form
1200 ## controls, on a web page by using the Left, Right, Up and Down arrow
1201 ## keys. For example, if a user presses the Right key, heuristics
1202 ## determine whether there is an element they might be trying to reach
1203 ## towards the right and which element they probably want.
1204 ## Type: Bool
1205 # c.input.spatial_navigation = False
1206
1207 ## Keychains that shouldn't be shown in the keyhint dialog. Globs are
1208 ## supported, so `;*` will blacklist all keychains starting with `;`. Use
1209 ## `*` to disable keyhints.
1210 ## Type: List of String
1211 # c.keyhint.blacklist = []
1212
1213 ## Time (in milliseconds) from pressing a key to seeing the keyhint
1214 ## dialog.
1215 ## Type: Int
1216 # c.keyhint.delay = 500
1217
1218 ## Rounding radius (in pixels) for the edges of the keyhint dialog.
1219 ## Type: Int
1220 # c.keyhint.radius = 6
1221
1222 ## Level for console (stdout/stderr) logs. Ignored if the `--loglevel` or
1223 ## `--debug` CLI flags are used.
1224 ## Type: LogLevel
1225 ## Valid values:
1226 ## - vdebug
1227 ## - debug
1228 ## - info
1229 ## - warning
1230 ## - error
1231 ## - critical
1232 # c.logging.level.console = 'info'
1233
1234 ## Level for in-memory logs.
1235 ## Type: LogLevel
1236 ## Valid values:
1237 ## - vdebug
1238 ## - debug
1239 ## - info
1240 ## - warning
1241 ## - error
1242 ## - critical
1243 # c.logging.level.ram = 'debug'
1244
1245 ## Duration (in milliseconds) to show messages in the statusbar for. Set
1246 ## to 0 to never clear messages.
1247 ## Type: Int
1248 # c.messages.timeout = 3000
1249
1250 ## How to open links in an existing instance if a new one is launched.
1251 ## This happens when e.g. opening a link from a terminal. See
1252 ## `new_instance_open_target_window` to customize in which window the
1253 ## link is opened in.
1254 ## Type: String
1255 ## Valid values:
1256 ## - tab: Open a new tab in the existing window and activate the window.
1257 ## - tab-bg: Open a new background tab in the existing window and activate the window.
1258 ## - tab-silent: Open a new tab in the existing window without activating the window.
1259 ## - tab-bg-silent: Open a new background tab in the existing window without activating the window.
1260 ## - window: Open in a new window.
1261 ## - private-window: Open in a new private window.
1262 # c.new_instance_open_target = 'tab'
1263
1264 ## Which window to choose when opening links as new tabs. When
1265 ## `new_instance_open_target` is set to `window`, this is ignored.
1266 ## Type: String
1267 ## Valid values:
1268 ## - first-opened: Open new tabs in the first (oldest) opened window.
1269 ## - last-opened: Open new tabs in the last (newest) opened window.
1270 ## - last-focused: Open new tabs in the most recently focused window.
1271 ## - last-visible: Open new tabs in the most recently visible window.
1272 c.new_instance_open_target_window = 'last-visible'
1273
1274 ## Show a filebrowser in download prompts.
1275 ## Type: Bool
1276 # c.prompt.filebrowser = True
1277
1278 ## Rounding radius (in pixels) for the edges of prompts.
1279 ## Type: Int
1280 # c.prompt.radius = 8
1281
1282 ## Additional arguments to pass to Qt, without leading `--`. With
1283 ## QtWebEngine, some Chromium arguments (see
1284 ## https://peter.sh/experiments/chromium-command-line-switches/ for a
1285 ## list) will work.
1286 ## Type: List of String
1287 c.qt.args = ['proxy-pac-url=file://' + str(config.configdir / 'proxy.pac')]
1288
1289 ## When to use Chromium's low-end device mode. This improves the RAM
1290 ## usage of renderer processes, at the expense of performance.
1291 ## Type: String
1292 ## Valid values:
1293 ## - always: Always use low-end device mode.
1294 ## - auto: Decide automatically (uses low-end mode with < 1 GB available RAM).
1295 ## - never: Never use low-end device mode.
1296 # c.qt.chromium.low_end_device_mode = 'auto'
1297
1298 ## Which Chromium process model to use. Alternative process models use
1299 ## less resources, but decrease security and robustness. See the
1300 ## following pages for more details: -
1301 ## https://www.chromium.org/developers/design-documents/process-models
1302 ## - https://doc.qt.io/qt-5/qtwebengine-features.html#process-models
1303 ## Type: String
1304 ## Valid values:
1305 ## - process-per-site-instance: Pages from separate sites are put into separate processes and separate visits to the same site are also isolated.
1306 ## - process-per-site: Pages from separate sites are put into separate processes. Unlike Process per Site Instance, all visits to the same site will share an OS process. The benefit of this model is reduced memory consumption, because more web pages will share processes. The drawbacks include reduced security, robustness, and responsiveness.
1307 ## - single-process: Run all tabs in a single process. This should be used for debugging purposes only, and it disables `:open --private`.
1308 # c.qt.chromium.process_model = 'process-per-site-instance'
1309
1310 ## What sandboxing mechanisms in Chromium to use. Chromium has various
1311 ## sandboxing layers, which should be enabled for normal browser usage.
1312 ## Mainly for testing and development, it's possible to disable
1313 ## individual sandboxing layers via this setting. Open `chrome://sandbox`
1314 ## to see the current sandbox status. Changing this setting is only
1315 ## recommended if you know what you're doing, as it **disables one of
1316 ## Chromium's security layers**. To avoid sandboxing being accidentally
1317 ## disabled persistently, this setting can only be set via `config.py`,
1318 ## not via `:set`. See the Chromium documentation for more details: - htt
1319 ## ps://chromium.googlesource.com/chromium/src/\+/HEAD/docs/linux/sandbox
1320 ## ing.md[Linux] - https://chromium.googlesource.com/chromium/src/\+/HEAD
1321 ## /docs/design/sandbox.md[Windows] - https://chromium.googlesource.com/c
1322 ## hromium/src/\+/HEAD/docs/design/sandbox_faq.md[FAQ (Windows-centric)]
1323 ## Type: String
1324 ## Valid values:
1325 ## - enable-all: Enable all available sandboxing mechanisms.
1326 ## - disable-seccomp-bpf: Disable the Seccomp BPF filter sandbox (Linux only).
1327 ## - disable-all: Disable all sandboxing (**not recommended!**).
1328 # c.qt.chromium.sandboxing = 'enable-all'
1329
1330 ## Additional environment variables to set. Setting an environment
1331 ## variable to null/None will unset it.
1332 ## Type: Dict
1333 # c.qt.environ = {}
1334
1335 ## Force a Qt platform to use. This sets the `QT_QPA_PLATFORM`
1336 ## environment variable and is useful to force using the XCB plugin when
1337 ## running QtWebEngine on Wayland.
1338 ## Type: String
1339 # c.qt.force_platform = None
1340
1341 ## Force a Qt platformtheme to use. This sets the `QT_QPA_PLATFORMTHEME`
1342 ## environment variable which controls dialogs like the filepicker. By
1343 ## default, Qt determines the platform theme based on the desktop
1344 ## environment.
1345 ## Type: String
1346 # c.qt.force_platformtheme = None
1347
1348 ## Force software rendering for QtWebEngine. This is needed for
1349 ## QtWebEngine to work with Nouveau drivers and can be useful in other
1350 ## scenarios related to graphic issues.
1351 ## Type: String
1352 ## Valid values:
1353 ## - software-opengl: Tell LibGL to use a software implementation of GL (`LIBGL_ALWAYS_SOFTWARE` / `QT_XCB_FORCE_SOFTWARE_OPENGL`)
1354 ## - qt-quick: Tell Qt Quick to use a software renderer instead of OpenGL. (`QT_QUICK_BACKEND=software`)
1355 ## - chromium: Tell Chromium to disable GPU support and use Skia software rendering instead. (`--disable-gpu`)
1356 ## - none: Don't force software rendering.
1357 # c.qt.force_software_rendering = 'none'
1358
1359 ## Turn on Qt HighDPI scaling. This is equivalent to setting
1360 ## QT_AUTO_SCREEN_SCALE_FACTOR=1 or QT_ENABLE_HIGHDPI_SCALING=1 (Qt >=
1361 ## 5.14) in the environment. It's off by default as it can cause issues
1362 ## with some bitmap fonts. As an alternative to this, it's possible to
1363 ## set font sizes and the `zoom.default` setting.
1364 ## Type: Bool
1365 # c.qt.highdpi = False
1366
1367 ## Work around locale parsing issues in QtWebEngine 5.15.3. With some
1368 ## locales, QtWebEngine 5.15.3 is unusable without this workaround. In
1369 ## affected scenarios, QtWebEngine will log "Network service crashed,
1370 ## restarting service." and only display a blank page. However, It is
1371 ## expected that distributions shipping QtWebEngine 5.15.3 follow up with
1372 ## a proper fix soon, so it is disabled by default.
1373 ## Type: Bool
1374 # c.qt.workarounds.locale = False
1375
1376 ## Delete the QtWebEngine Service Worker directory on every start. This
1377 ## workaround can help with certain crashes caused by an unknown
1378 ## QtWebEngine bug related to Service Workers. Those crashes happen
1379 ## seemingly immediately on Windows; after one hour of operation on other
1380 ## systems. Note however that enabling this option *can lead to data
1381 ## loss* on some pages (as Service Worker data isn't persisted) and will
1382 ## negatively impact start-up time.
1383 ## Type: Bool
1384 # c.qt.workarounds.remove_service_workers = False
1385
1386 ## When/how to show the scrollbar.
1387 ## Type: String
1388 ## Valid values:
1389 ## - always: Always show the scrollbar.
1390 ## - never: Never show the scrollbar.
1391 ## - when-searching: Show the scrollbar when searching for text in the webpage. With the QtWebKit backend, this is equal to `never`.
1392 ## - overlay: Show an overlay scrollbar. On macOS, this is unavailable and equal to `when-searching`; with the QtWebKit backend, this is equal to `never`. Enabling/disabling overlay scrollbars requires a restart.
1393 # c.scrolling.bar = 'overlay'
1394
1395 ## Enable smooth scrolling for web pages. Note smooth scrolling does not
1396 ## work with the `:scroll-px` command.
1397 ## Type: Bool
1398 # c.scrolling.smooth = False
1399
1400 ## When to find text on a page case-insensitively.
1401 ## Type: IgnoreCase
1402 ## Valid values:
1403 ## - always: Search case-insensitively.
1404 ## - never: Search case-sensitively.
1405 ## - smart: Search case-sensitively if there are capital characters.
1406 # c.search.ignore_case = 'smart'
1407
1408 ## Find text on a page incrementally, renewing the search for each typed
1409 ## character.
1410 ## Type: Bool
1411 # c.search.incremental = True
1412
1413 ## Wrap around at the top and bottom of the page when advancing through
1414 ## text matches using `:search-next` and `:search-prev`.
1415 ## Type: Bool
1416 # c.search.wrap = True
1417
1418 ## Display messages when advancing through text matches at the top and
1419 ## bottom of the page, e.g. `Search hit TOP`.
1420 ## Type: Bool
1421 # c.search.wrap_messages = True
1422
1423 ## Name of the session to save by default. If this is set to null, the
1424 ## session which was last loaded is saved.
1425 ## Type: SessionName
1426 # c.session.default_name = None
1427
1428 ## Load a restored tab as soon as it takes focus.
1429 ## Type: Bool
1430 # c.session.lazy_restore = False
1431
1432 ## Whether to automatically save a session when it is closed.
1433 ## Type: Bool
1434 # c.session.save_when_close = True
1435
1436 ## Which sessions to load on startup. None will load the last saved
1437 ## sessions from the sate file, if you want to not load any sessions,
1438 ## pass an empty list.
1439 ## Type: List of String
1440 # c.session.startup_sessions = None
1441
1442 ## Languages to use for spell checking. You can check for available
1443 ## languages and install dictionaries using scripts/dictcli.py. Run the
1444 ## script with -h/--help for instructions.
1445 ## Type: List of String
1446 ## Valid values:
1447 ## - af-ZA: Afrikaans (South Africa)
1448 ## - bg-BG: Bulgarian (Bulgaria)
1449 ## - ca-ES: Catalan (Spain)
1450 ## - cs-CZ: Czech (Czech Republic)
1451 ## - da-DK: Danish (Denmark)
1452 ## - de-DE: German (Germany)
1453 ## - el-GR: Greek (Greece)
1454 ## - en-AU: English (Australia)
1455 ## - en-CA: English (Canada)
1456 ## - en-GB: English (United Kingdom)
1457 ## - en-US: English (United States)
1458 ## - es-ES: Spanish (Spain)
1459 ## - et-EE: Estonian (Estonia)
1460 ## - fa-IR: Farsi (Iran)
1461 ## - fo-FO: Faroese (Faroe Islands)
1462 ## - fr-FR: French (France)
1463 ## - he-IL: Hebrew (Israel)
1464 ## - hi-IN: Hindi (India)
1465 ## - hr-HR: Croatian (Croatia)
1466 ## - hu-HU: Hungarian (Hungary)
1467 ## - id-ID: Indonesian (Indonesia)
1468 ## - it-IT: Italian (Italy)
1469 ## - ko: Korean
1470 ## - lt-LT: Lithuanian (Lithuania)
1471 ## - lv-LV: Latvian (Latvia)
1472 ## - nb-NO: Norwegian (Norway)
1473 ## - nl-NL: Dutch (Netherlands)
1474 ## - pl-PL: Polish (Poland)
1475 ## - pt-BR: Portuguese (Brazil)
1476 ## - pt-PT: Portuguese (Portugal)
1477 ## - ro-RO: Romanian (Romania)
1478 ## - ru-RU: Russian (Russia)
1479 ## - sh: Serbo-Croatian
1480 ## - sk-SK: Slovak (Slovakia)
1481 ## - sl-SI: Slovenian (Slovenia)
1482 ## - sq: Albanian
1483 ## - sr: Serbian
1484 ## - sv-SE: Swedish (Sweden)
1485 ## - ta-IN: Tamil (India)
1486 ## - tg-TG: Tajik (Tajikistan)
1487 ## - tr-TR: Turkish (Turkey)
1488 ## - uk-UA: Ukrainian (Ukraine)
1489 ## - vi-VN: Vietnamese (Viet Nam)
1490 c.spellcheck.languages = ['en-GB']
1491
1492 ## Padding (in pixels) for the statusbar.
1493 ## Type: Padding
1494 # c.statusbar.padding = {'top': 1, 'bottom': 1, 'left': 0, 'right': 0}
1495
1496 ## Position of the status bar.
1497 ## Type: VerticalPosition
1498 ## Valid values:
1499 ## - top
1500 ## - bottom
1501 # c.statusbar.position = 'bottom'
1502
1503 ## When to show the statusbar.
1504 ## Type: String
1505 ## Valid values:
1506 ## - always: Always show the statusbar.
1507 ## - never: Always hide the statusbar.
1508 ## - in-mode: Show the statusbar when in modes other than normal mode.
1509 # c.statusbar.show = 'always'
1510
1511 ## List of widgets displayed in the statusbar.
1512 ## Type: List of StatusbarWidget
1513 ## Valid values:
1514 ## - url: Current page URL.
1515 ## - scroll: Percentage of the current page position like `10%`.
1516 ## - scroll_raw: Raw percentage of the current page position like `10`.
1517 ## - history: Display an arrow when possible to go back/forward in history.
1518 ## - search_match: A match count when searching, e.g. `Match [2/10]`.
1519 ## - tabs: Current active tab, e.g. `2`.
1520 ## - keypress: Display pressed keys when composing a vi command.
1521 ## - progress: Progress bar for the current page loading.
1522 ## - text:foo: Display the static text after the colon, `foo` in the example.
1523 ## - clock: Display current time. The format can be changed by adding a format string via `clock:...`. For supported format strings, see https://docs.python.org/3/library/datetime.html#strftime-and-strptime-format-codes[the Python datetime documentation].
1524 # c.statusbar.widgets = ['keypress', 'search_match', 'url', 'scroll', 'history', 'tabs', 'progress']
1525
1526 ## Open new tabs (middleclick/ctrl+click) in the background.
1527 ## Type: Bool
1528 # c.tabs.background = True
1529
1530 ## Mouse button with which to close tabs.
1531 ## Type: String
1532 ## Valid values:
1533 ## - right: Close tabs on right-click.
1534 ## - middle: Close tabs on middle-click.
1535 ## - none: Don't close tabs using the mouse.
1536 # c.tabs.close_mouse_button = 'middle'
1537
1538 ## How to behave when the close mouse button is pressed on the tab bar.
1539 ## Type: String
1540 ## Valid values:
1541 ## - new-tab: Open a new tab.
1542 ## - close-current: Close the current tab.
1543 ## - close-last: Close the last tab.
1544 ## - ignore: Don't do anything.
1545 # c.tabs.close_mouse_button_on_bar = 'new-tab'
1546
1547 ## Scaling factor for favicons in the tab bar. The tab size is unchanged,
1548 ## so big favicons also require extra `tabs.padding`.
1549 ## Type: Float
1550 # c.tabs.favicons.scale = 1.0
1551
1552 ## When to show favicons in the tab bar. When switching this from never
1553 ## to always/pinned, note that favicons might not be loaded yet, thus
1554 ## tabs might require a reload to display them.
1555 ## Type: String
1556 ## Valid values:
1557 ## - always: Always show favicons.
1558 ## - never: Always hide favicons.
1559 ## - pinned: Show favicons only on pinned tabs.
1560 # c.tabs.favicons.show = 'always'
1561
1562 ## Maximum stack size to remember for tab switches (-1 for no maximum).
1563 ## Type: Int
1564 # c.tabs.focus_stack_size = 10
1565
1566 ## Padding (in pixels) for tab indicators.
1567 ## Type: Padding
1568 # c.tabs.indicator.padding = {'top': 2, 'bottom': 2, 'left': 0, 'right': 4}
1569
1570 ## Width (in pixels) of the progress indicator (0 to disable).
1571 ## Type: Int
1572 # c.tabs.indicator.width = 3
1573
1574 ## How to behave when the last tab is closed. If the
1575 ## `tabs.tabs_are_windows` setting is set, this is ignored and the
1576 ## behavior is always identical to the `close` value.
1577 ## Type: String
1578 ## Valid values:
1579 ## - ignore: Don't do anything.
1580 ## - blank: Load a blank page.
1581 ## - startpage: Load the start page.
1582 ## - default-page: Load the default page.
1583 ## - close: Close the window.
1584 # c.tabs.last_close = 'ignore'
1585
1586 ## Maximum width (in pixels) of tabs (-1 for no maximum). This setting
1587 ## only applies when tabs are horizontal. This setting does not apply to
1588 ## pinned tabs, unless `tabs.pinned.shrink` is False. This setting may
1589 ## not apply properly if max_width is smaller than the minimum size of
1590 ## tab contents, or smaller than tabs.min_width.
1591 ## Type: Int
1592 # c.tabs.max_width = -1
1593
1594 ## Minimum width (in pixels) of tabs (-1 for the default minimum size
1595 ## behavior). This setting only applies when tabs are horizontal. This
1596 ## setting does not apply to pinned tabs, unless `tabs.pinned.shrink` is
1597 ## False.
1598 ## Type: Int
1599 # c.tabs.min_width = -1
1600
1601 ## When switching tabs, what input mode is applied.
1602 ## Type: String
1603 ## Valid values:
1604 ## - persist: Retain the current mode.
1605 ## - restore: Restore previously saved mode.
1606 ## - normal: Always revert to normal mode.
1607 # c.tabs.mode_on_change = 'normal'
1608
1609 ## Switch between tabs using the mouse wheel.
1610 ## Type: Bool
1611 # c.tabs.mousewheel_switching = True
1612
1613 ## Position of new tabs opened from another tab. See
1614 ## `tabs.new_position.stacking` for controlling stacking behavior.
1615 ## Type: NewTabPosition
1616 ## Valid values:
1617 ## - prev: Before the current tab.
1618 ## - next: After the current tab.
1619 ## - first: At the beginning.
1620 ## - last: At the end.
1621 # c.tabs.new_position.related = 'next'
1622
1623 ## Stack related tabs on top of each other when opened consecutively.
1624 ## Only applies for `next` and `prev` values of
1625 ## `tabs.new_position.related` and `tabs.new_position.unrelated`.
1626 ## Type: Bool
1627 # c.tabs.new_position.stacking = True
1628
1629 ## Position of new tabs which are not opened from another tab. See
1630 ## `tabs.new_position.stacking` for controlling stacking behavior.
1631 ## Type: NewTabPosition
1632 ## Valid values:
1633 ## - prev: Before the current tab.
1634 ## - next: After the current tab.
1635 ## - first: At the beginning.
1636 ## - last: At the end.
1637 c.tabs.new_position.unrelated = 'next'
1638
1639 ## Padding (in pixels) around text for tabs.
1640 ## Type: Padding
1641 # c.tabs.padding = {'top': 0, 'bottom': 0, 'left': 5, 'right': 5}
1642
1643 ## Force pinned tabs to stay at fixed URL.
1644 ## Type: Bool
1645 # c.tabs.pinned.frozen = True
1646
1647 ## Shrink pinned tabs down to their contents.
1648 ## Type: Bool
1649 # c.tabs.pinned.shrink = True
1650
1651 ## Position of the tab bar.
1652 ## Type: Position
1653 ## Valid values:
1654 ## - top
1655 ## - bottom
1656 ## - left
1657 ## - right
1658 # c.tabs.position = 'top'
1659
1660 ## Which tab to select when the focused tab is removed.
1661 ## Type: SelectOnRemove
1662 ## Valid values:
1663 ## - prev: Select the tab which came before the closed one (left in horizontal, above in vertical).
1664 ## - next: Select the tab which came after the closed one (right in horizontal, below in vertical).
1665 ## - last-used: Select the previously selected tab.
1666 c.tabs.select_on_remove = 'prev'
1667
1668 ## When to show the tab bar.
1669 ## Type: String
1670 ## Valid values:
1671 ## - always: Always show the tab bar.
1672 ## - never: Always hide the tab bar.
1673 ## - multiple: Hide the tab bar if only one tab is open.
1674 ## - switching: Show the tab bar when switching tabs.
1675 # c.tabs.show = 'always'
1676
1677 ## Duration (in milliseconds) to show the tab bar before hiding it when
1678 ## tabs.show is set to 'switching'.
1679 ## Type: Int
1680 # c.tabs.show_switching_delay = 800
1681
1682 ## Open a new window for every tab.
1683 ## Type: Bool
1684 # c.tabs.tabs_are_windows = False
1685
1686 ## Alignment of the text inside of tabs.
1687 ## Type: TextAlignment
1688 ## Valid values:
1689 ## - left
1690 ## - right
1691 ## - center
1692 # c.tabs.title.alignment = 'left'
1693
1694 ## Position of ellipsis in truncated title of tabs.
1695 ## Type: ElidePosition
1696 ## Valid values:
1697 ## - left
1698 ## - right
1699 ## - middle
1700 ## - none
1701 # c.tabs.title.elide = 'right'
1702
1703 ## Format to use for the tab title. The following placeholders are
1704 ## defined:
1705 ## * `{perc}`: Percentage as a string like `[10%]`.
1706 ## * `{perc_raw}`: Raw percentage, e.g. `10`.
1707 ## * `{current_title}`: Title of the current web page.
1708 ## * `{title_sep}`: The string `" - "` if a title is set, empty otherwise.
1709 ## * `{index}`: Index of this tab.
1710 ## * `{aligned_index}`: Index of this tab padded with spaces to have the same width.
1711 ## * `{relative_index}`: Index of this tab relative to the current tab.
1712 ## * `{id}`: Internal tab ID of this tab.
1713 ## * `{scroll_pos}`: Page scroll position.
1714 ## * `{host}`: Host of the current web page.
1715 ## * `{backend}`: Either `webkit` or `webengine`
1716 ## * `{private}`: Indicates when private mode is enabled.
1717 ## * `{current_url}`: URL of the current web page.
1718 ## * `{protocol}`: Protocol (http/https/...) of the current web page.
1719 ## * `{audio}`: Indicator for audio/mute status.
1720 ## Type: FormatString
1721 # c.tabs.title.format = '{audio}{index}: {current_title}'
1722
1723 ## Format to use for the tab title for pinned tabs. The same placeholders
1724 ## like for `tabs.title.format` are defined.
1725 ## Type: FormatString
1726 # c.tabs.title.format_pinned = '{index}'
1727
1728 ## Show tooltips on tabs. Note this setting only affects windows opened
1729 ## after it has been set.
1730 ## Type: Bool
1731 # c.tabs.tooltips = True
1732
1733 ## Number of closed tabs (per window) and closed windows to remember for
1734 ## :undo (-1 for no maximum).
1735 ## Type: Int
1736 # c.tabs.undo_stack_size = 100
1737
1738 ## Width (in pixels or as percentage of the window) of the tab bar if
1739 ## it's vertical.
1740 ## Type: PercOrInt
1741 # c.tabs.width = '15%'
1742
1743 ## Wrap when changing tabs.
1744 ## Type: Bool
1745 # c.tabs.wrap = True
1746
1747 ## What search to start when something else than a URL is entered.
1748 ## Type: String
1749 ## Valid values:
1750 ## - naive: Use simple/naive check.
1751 ## - dns: Use DNS requests (might be slow!).
1752 ## - never: Never search automatically.
1753 ## - schemeless: Always search automatically unless URL explicitly contains a scheme.
1754 # c.url.auto_search = 'naive'
1755
1756 ## Page to open if :open -t/-b/-w is used without URL. Use `about:blank`
1757 ## for a blank page.
1758 ## Type: FuzzyUrl
1759 # c.url.default_page = 'https://start.duckduckgo.com/'
1760
1761 ## URL segments where `:navigate increment/decrement` will search for a
1762 ## number.
1763 ## Type: FlagList
1764 ## Valid values:
1765 ## - host
1766 ## - port
1767 ## - path
1768 ## - query
1769 ## - anchor
1770 # c.url.incdec_segments = ['path', 'query']
1771
1772 ## Open base URL of the searchengine if a searchengine shortcut is
1773 ## invoked without parameters.
1774 ## Type: Bool
1775 # c.url.open_base_url = False
1776
1777 ## Search engines which can be used via the address bar. Maps a search
1778 ## engine name (such as `DEFAULT`, or `ddg`) to a URL with a `{}`
1779 ## placeholder. The placeholder will be replaced by the search term, use
1780 ## `{{` and `}}` for literal `{`/`}` braces. The following further
1781 ## placeholds are defined to configure how special characters in the
1782 ## search terms are replaced by safe characters (called 'quoting'):
1783 ## * `{}` and `{semiquoted}` quote everything except slashes; this is the
1784 ## most sensible choice for almost all search engines (for the search
1785 ## term `slash/and&amp` this placeholder expands to `slash/and%26amp`).
1786 ## * `{quoted}` quotes all characters (for `slash/and&amp` this
1787 ## placeholder expands to `slash%2Fand%26amp`).
1788 ## * `{unquoted}` quotes nothing (for `slash/and&amp` this placeholder
1789 ## expands to `slash/and&amp`).
1790 ## * `{0}` means the same as `{}`, but can be used multiple times. The search
1791 ## engine named `DEFAULT` is used when
1792 ## `url.auto_search` is turned on and something else than a URL was
1793 ## entered to be opened. Other search engines can be used by prepending
1794 ## the search engine name to the search term, e.g. `:open google
1795 ## qutebrowser`.
1796 ## Type: Dict
1797 c.url.searchengines = {'DEFAULT': 'https://duckduckgo.com/?t=chakra&q={}',
1798 'ddg': 'https://duckduckgo.com/?t=chakra&q={}',
1799 'cdda': 'https://nornagon.github.io/cdda-guide/?v=0.F-2#/search/{}',
1800 'std': 'http://en.cppreference.com/mwiki/index.php?title=Special%3ASearch&search={}',
1801 'hoogle': 'https://hoogle.haskell.org/?hoogle={}',
1802 'h': 'https://hoogle.haskell.org/?hoogle={}',
1803 'fpp/slack': 'https://focalpointpositioning.slack.com/messages/{}',
1804 'fpp/confluence': 'https://fppnt.atlassian.net/wiki/search?text={}',
1805 }
1806
1807 ## Page(s) to open at the start.
1808 ## Type: List of FuzzyUrl, or FuzzyUrl
1809 # c.url.start_pages = ['https://start.duckduckgo.com']
1810
1811 ## URL parameters to strip with `:yank url`.
1812 ## Type: List of String
1813 # c.url.yank_ignored_parameters = ['ref', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content']
1814
1815 ## Hide the window decoration. This setting requires a restart on
1816 ## Wayland.
1817 ## Type: Bool
1818 # c.window.hide_decoration = False
1819
1820 ## Format to use for the window title. The same placeholders like for
1821 ## `tabs.title.format` are defined.
1822 ## Type: FormatString
1823 # c.window.title_format = '{perc}{current_title}{title_sep}qutebrowser'
1824
1825 ## Set the main window background to transparent. This allows having a
1826 ## transparent tab- or statusbar (might require a compositor such as
1827 ## picom). However, it breaks some functionality such as dmenu embedding
1828 ## via its `-w` option. On some systems, it was additionally reported
1829 ## that main window transparency negatively affects performance. Note
1830 ## this setting only affects windows opened after setting it.
1831 ## Type: Bool
1832 # c.window.transparent = False
1833
1834 ## Default zoom level.
1835 ## Type: Perc
1836 # c.zoom.default = '100%'
1837
1838 ## Available zoom levels.
1839 ## Type: List of Perc
1840 # c.zoom.levels = ['25%', '33%', '50%', '67%', '75%', '90%', '100%', '110%', '125%', '150%', '175%', '200%', '250%', '300%', '400%', '500%']
1841
1842 ## Number of zoom increments to divide the mouse wheel movements to.
1843 ## Type: Int
1844 # c.zoom.mouse_divider = 512
1845
1846 ## Apply the zoom factor on a frame only to the text or to all content.
1847 ## Type: Bool
1848 # c.zoom.text_only = False
1849
1850 ## Bindings for normal mode
1851 # config.bind("'", 'mode-enter jump_mark')
1852 # config.bind('+', 'zoom-in')
1853 # config.bind('-', 'zoom-out')
1854 # config.bind('.', 'repeat-command')
1855 # config.bind('/', 'set-cmd-text /')
1856 # config.bind(':', 'set-cmd-text :')
1857 # config.bind(';I', 'hint images tab')
1858 # config.bind(';O', 'hint links fill :open -t -r {hint-url}')
1859 # config.bind(';R', 'hint --rapid links window')
1860 # config.bind(';Y', 'hint links yank-primary')
1861 # config.bind(';b', 'hint all tab-bg')
1862 # config.bind(';d', 'hint links download')
1863 # config.bind(';f', 'hint all tab-fg')
1864 # config.bind(';h', 'hint all hover')
1865 # config.bind(';i', 'hint images')
1866 # config.bind(';o', 'hint links fill :open {hint-url}')
1867 # config.bind(';r', 'hint --rapid links tab-bg')
1868 # config.bind(';t', 'hint inputs')
1869 # config.bind(';y', 'hint links yank')
1870 # config.bind('<Alt-1>', 'tab-focus 1')
1871 # config.bind('<Alt-2>', 'tab-focus 2')
1872 # config.bind('<Alt-3>', 'tab-focus 3')
1873 # config.bind('<Alt-4>', 'tab-focus 4')
1874 # config.bind('<Alt-5>', 'tab-focus 5')
1875 # config.bind('<Alt-6>', 'tab-focus 6')
1876 # config.bind('<Alt-7>', 'tab-focus 7')
1877 # config.bind('<Alt-8>', 'tab-focus 8')
1878 # config.bind('<Alt-9>', 'tab-focus -1')
1879 # config.bind('<Alt-m>', 'tab-mute')
1880 # config.bind('<Ctrl-A>', 'navigate increment')
1881 # config.bind('<Ctrl-Alt-p>', 'print')
1882 # config.bind('<Ctrl-B>', 'scroll-page 0 -1')
1883 # config.bind('<Ctrl-D>', 'scroll-page 0 0.5')
1884 # config.bind('<Ctrl-F5>', 'reload -f')
1885 # config.bind('<Ctrl-F>', 'scroll-page 0 1')
1886 # config.bind('<Ctrl-N>', 'open -w')
1887 # config.bind('<Ctrl-PgDown>', 'tab-next')
1888 # config.bind('<Ctrl-PgUp>', 'tab-prev')
1889 # config.bind('<Ctrl-Q>', 'quit')
1890 # config.bind('<Ctrl-Return>', 'selection-follow -t')
1891 # config.bind('<Ctrl-Shift-N>', 'open -p')
1892 # config.bind('<Ctrl-Shift-T>', 'undo')
1893 # config.bind('<Ctrl-Shift-Tab>', 'nop')
1894 # config.bind('<Ctrl-Shift-W>', 'close')
1895 # config.bind('<Ctrl-T>', 'open -t')
1896 # config.bind('<Ctrl-Tab>', 'tab-focus last')
1897 # config.bind('<Ctrl-U>', 'scroll-page 0 -0.5')
1898 # config.bind('<Ctrl-V>', 'mode-enter passthrough')
1899 # config.bind('<Ctrl-W>', 'tab-close')
1900 # config.bind('<Ctrl-X>', 'navigate decrement')
1901 # config.bind('<Ctrl-^>', 'tab-focus last')
1902 # config.bind('<Ctrl-h>', 'home')
1903 # config.bind('<Ctrl-p>', 'tab-pin')
1904 # config.bind('<Ctrl-s>', 'stop')
1905 config.bind('<Escape>', 'clear-keychain ;; search ;; fullscreen --leave ;; fake-key <Escape>')
1906 # config.bind('<F11>', 'fullscreen')
1907 # config.bind('<F5>', 'reload')
1908 # config.bind('<Return>', 'selection-follow')
1909 # config.bind('<back>', 'back')
1910 # config.bind('<forward>', 'forward')
1911 # config.bind('=', 'zoom')
1912 # config.bind('?', 'set-cmd-text ?')
1913 # config.bind('@', 'macro-run')
1914 # config.bind('B', 'set-cmd-text -s :quickmark-load -t')
1915 # config.bind('D', 'tab-close -o')
1916 # config.bind('F', 'hint all tab')
1917 # config.bind('G', 'scroll-to-perc')
1918 # config.bind('H', 'back')
1919 config.bind('K', 'tab-next')
1920 config.bind('J', 'tab-prev')
1921 # config.bind('L', 'forward')
1922 # config.bind('M', 'bookmark-add')
1923 # config.bind('N', 'search-prev')
1924 # config.bind('O', 'set-cmd-text -s :open -t')
1925 # config.bind('PP', 'open -t -- {primary}')
1926 # config.bind('Pp', 'open -t -- {clipboard}')
1927 # config.bind('R', 'reload -f')
1928 # config.bind('Sb', 'bookmark-list --jump')
1929 # config.bind('Sh', 'history')
1930 # config.bind('Sq', 'bookmark-list')
1931 # config.bind('Ss', 'set')
1932 # config.bind('T', 'set-cmd-text -sr :tab-focus')
1933 # config.bind('U', 'undo -w')
1934 # config.bind('V', 'mode-enter caret ;; selection-toggle --line')
1935 # config.bind('ZQ', 'quit')
1936 # config.bind('ZZ', 'quit --save')
1937 # config.bind('[[', 'navigate prev')
1938 # config.bind(']]', 'navigate next')
1939 # config.bind('`', 'mode-enter set_mark')
1940 # config.bind('ad', 'download-cancel')
1941 # config.bind('b', 'set-cmd-text -s :quickmark-load')
1942 # config.bind('cd', 'download-clear')
1943 config.unbind('co')
1944 config.bind('co', 'download-open')
1945 # config.bind('d', 'tab-close')
1946 # config.bind('f', 'hint')
1947 # config.bind('g$', 'tab-focus -1')
1948 # config.bind('g0', 'tab-focus 1')
1949 # config.bind('gB', 'set-cmd-text -s :bookmark-load -t')
1950 # config.bind('gC', 'tab-clone')
1951 # config.bind('gD', 'tab-give')
1952 # config.bind('gJ', 'tab-move +')
1953 # config.bind('gK', 'tab-move -')
1954 # config.bind('gO', 'set-cmd-text :open -t -r {url:pretty}')
1955 # config.bind('gU', 'navigate up -t')
1956 # config.bind('g^', 'tab-focus 1')
1957 # config.bind('ga', 'open -t')
1958 # config.bind('gb', 'set-cmd-text -s :bookmark-load')
1959 # config.bind('gd', 'download')
1960 # config.bind('gf', 'view-source')
1961 # config.bind('gg', 'scroll-to-perc 0')
1962 # config.bind('gi', 'hint inputs --first')
1963 config.bind('gl', 'tab-move -')
1964 # config.bind('gm', 'tab-move')
1965 # config.bind('go', 'set-cmd-text :open {url:pretty}')
1966 config.bind('gr', 'tab-move +')
1967 # config.bind('gt', 'set-cmd-text -s :tab-select')
1968 # config.bind('gu', 'navigate up')
1969 # config.bind('h', 'scroll left')
1970 # config.bind('i', 'mode-enter insert')
1971 # config.bind('j', 'scroll down')
1972 # config.bind('k', 'scroll up')
1973 # config.bind('l', 'scroll right')
1974 config.bind('m', 'spawn mpv {url}')
1975 # config.bind('n', 'search-next')
1976 # config.bind('o', 'set-cmd-text -s :open')
1977 # config.bind('pP', 'open -- {primary}')
1978 # config.bind('pp', 'open -- {clipboard}')
1979 # config.bind('q', 'macro-record')
1980 # config.bind('r', 'reload')
1981 # config.bind('sf', 'save')
1982 # config.bind('sk', 'set-cmd-text -s :bind')
1983 # config.bind('sl', 'set-cmd-text -s :set -t')
1984 # config.bind('ss', 'set-cmd-text -s :set')
1985 config.bind('sq', 'quickmark-save')
1986 config.bind('tCh', 'spawn --userscript config-cycle-tld -p content.cookies.accept no-3rdparty never all;; reload')
1987 config.bind('tch', 'spawn --userscript config-cycle-tld -p -t content.cookies.accept no-3rdparty never all;; reload')
1988 config.bind('tGh', 'spawn --userscript config-cycle-tld -p content.geolocation ;; reload')
1989 config.bind('tgh', 'spawn --userscript config-cycle-tld -p -t content.geolocation ;; reload')
1990 # config.bind('tIH', 'config-cycle -p -u *://*.{url:host}/* content.images ;; reload')
1991 # config.bind('tIh', 'config-cycle -p -u *://{url:host}/* content.images ;; reload')
1992 # config.bind('tIu', 'config-cycle -p -u {url} content.images ;; reload')
1993 # config.bind('tPH', 'config-cycle -p -u *://*.{url:host}/* content.plugins ;; reload')
1994 # config.bind('tPh', 'config-cycle -p -u *://{url:host}/* content.plugins ;; reload')
1995 # config.bind('tPu', 'config-cycle -p -u {url} content.plugins ;; reload')
1996 # config.bind('tSH', 'config-cycle -p -u *://*.{url:host}/* content.javascript.enabled ;; reload')
1997 # config.bind('tSh', 'config-cycle -p -u *://{url:host}/* content.javascript.enabled ;; reload')
1998 # config.bind('tSu', 'config-cycle -p -u {url} content.javascript.enabled ;; reload')
1999 # config.bind('th', 'back -t')
2000 # config.bind('tiH', 'config-cycle -p -t -u *://*.{url:host}/* content.images ;; reload')
2001 # config.bind('tih', 'config-cycle -p -t -u *://{url:host}/* content.images ;; reload')
2002 # config.bind('tiu', 'config-cycle -p -t -u {url} content.images ;; reload')
2003 # config.bind('tl', 'forward -t')
2004 # config.bind('tpH', 'config-cycle -p -t -u *://*.{url:host}/* content.plugins ;; reload')
2005 # config.bind('tph', 'config-cycle -p -t -u *://{url:host}/* content.plugins ;; reload')
2006 # config.bind('tpu', 'config-cycle -p -t -u {url} content.plugins ;; reload')
2007 # config.bind('tsH', 'config-cycle -p -t -u *://*.{url:host}/* content.javascript.enabled ;; reload')
2008 # config.bind('tsh', 'config-cycle -p -t -u *://{url:host}/* content.javascript.enabled ;; reload')
2009 # config.bind('tsu', 'config-cycle -p -t -u {url} content.javascript.enabled ;; reload')
2010 # config.bind('u', 'undo')
2011 # config.bind('v', 'mode-enter caret')
2012 # config.bind('wB', 'set-cmd-text -s :bookmark-load -w')
2013 # config.bind('wIf', 'devtools-focus')
2014 # config.bind('wIh', 'devtools left')
2015 # config.bind('wIj', 'devtools bottom')
2016 # config.bind('wIk', 'devtools top')
2017 # config.bind('wIl', 'devtools right')
2018 # config.bind('wIw', 'devtools window')
2019 # config.bind('wO', 'set-cmd-text :open -w {url:pretty}')
2020 # config.bind('wP', 'open -w -- {primary}')
2021 # config.bind('wb', 'set-cmd-text -s :quickmark-load -w')
2022 # config.bind('wf', 'hint all window')
2023 # config.bind('wh', 'back -w')
2024 # config.bind('wi', 'devtools')
2025 # config.bind('wl', 'forward -w')
2026 # config.bind('wo', 'set-cmd-text -s :open -w')
2027 # config.bind('wp', 'open -w -- {clipboard}')
2028 # config.bind('xO', 'set-cmd-text :open -b -r {url:pretty}')
2029 # config.bind('xo', 'set-cmd-text -s :open -b')
2030 # config.bind('yD', 'yank domain -s')
2031 # config.bind('yM', 'yank inline [{title}]({url}) -s')
2032 # config.bind('yP', 'yank pretty-url -s')
2033 # config.bind('yT', 'yank title -s')
2034 # config.bind('yY', 'yank -s')
2035 # config.bind('yd', 'yank domain')
2036 # config.bind('ym', 'yank inline [{title}]({url})')
2037 # config.bind('yp', 'yank pretty-url')
2038 # config.bind('yt', 'yank title')
2039 # config.bind('yy', 'yank')
2040 config.bind('zl', 'spawn --userscript qute-pass')
2041 config.bind('zul', 'spawn --userscript qute-pass --username-only')
2042 config.bind('zpl', 'spawn --userscript qute-pass --password-only')
2043 config.bind('zol', 'spawn --userscript qute-pass --otp-only')
2044 config.bind('zal', 'spawn --userscript qute-pass --unfiltered')
2045 config.bind('zaul', 'spawn --userscript qute-pass --unfiltered --username-only')
2046 config.bind('zapl', 'spawn --userscript qute-pass --unfiltered --password-only')
2047 config.bind('zaol', 'spawn --userscript qute-pass --unfiltered --otp-only')
2048 # config.bind('{{', 'navigate prev -t')
2049 # config.bind('}}', 'navigate next -t')
2050
2051 ## Bindings for caret mode
2052 # config.bind('$', 'move-to-end-of-line', mode='caret')
2053 # config.bind('0', 'move-to-start-of-line', mode='caret')
2054 # config.bind('<Ctrl-Space>', 'selection-drop', mode='caret')
2055 # config.bind('<Escape>', 'mode-leave', mode='caret')
2056 # config.bind('<Return>', 'yank selection', mode='caret')
2057 # config.bind('<Space>', 'selection-toggle', mode='caret')
2058 # config.bind('G', 'move-to-end-of-document', mode='caret')
2059 # config.bind('H', 'scroll left', mode='caret')
2060 # config.bind('J', 'scroll down', mode='caret')
2061 # config.bind('K', 'scroll up', mode='caret')
2062 # config.bind('L', 'scroll right', mode='caret')
2063 # config.bind('V', 'selection-toggle --line', mode='caret')
2064 # config.bind('Y', 'yank selection -s', mode='caret')
2065 # config.bind('[', 'move-to-start-of-prev-block', mode='caret')
2066 # config.bind(']', 'move-to-start-of-next-block', mode='caret')
2067 # config.bind('b', 'move-to-prev-word', mode='caret')
2068 # config.bind('c', 'mode-enter normal', mode='caret')
2069 # config.bind('e', 'move-to-end-of-word', mode='caret')
2070 # config.bind('gg', 'move-to-start-of-document', mode='caret')
2071 # config.bind('h', 'move-to-prev-char', mode='caret')
2072 # config.bind('j', 'move-to-next-line', mode='caret')
2073 # config.bind('k', 'move-to-prev-line', mode='caret')
2074 # config.bind('l', 'move-to-next-char', mode='caret')
2075 # config.bind('o', 'selection-reverse', mode='caret')
2076 # config.bind('v', 'selection-toggle', mode='caret')
2077 # config.bind('w', 'move-to-next-word', mode='caret')
2078 # config.bind('y', 'yank selection', mode='caret')
2079 # config.bind('{', 'move-to-end-of-prev-block', mode='caret')
2080 # config.bind('}', 'move-to-end-of-next-block', mode='caret')
2081
2082 ## Bindings for command mode
2083 # config.bind('<Alt-B>', 'rl-backward-word', mode='command')
2084 # config.bind('<Alt-Backspace>', 'rl-backward-kill-word', mode='command')
2085 # config.bind('<Alt-D>', 'rl-kill-word', mode='command')
2086 # config.bind('<Alt-F>', 'rl-forward-word', mode='command')
2087 # config.bind('<Ctrl-?>', 'rl-delete-char', mode='command')
2088 # config.bind('<Ctrl-A>', 'rl-beginning-of-line', mode='command')
2089 # config.bind('<Ctrl-B>', 'rl-backward-char', mode='command')
2090 # config.bind('<Ctrl-C>', 'completion-item-yank', mode='command')
2091 # config.bind('<Ctrl-D>', 'completion-item-del', mode='command')
2092 # config.bind('<Ctrl-E>', 'rl-end-of-line', mode='command')
2093 # config.bind('<Ctrl-F>', 'rl-forward-char', mode='command')
2094 # config.bind('<Ctrl-H>', 'rl-backward-delete-char', mode='command')
2095 # config.bind('<Ctrl-K>', 'rl-kill-line', mode='command')
2096 # config.bind('<Ctrl-N>', 'command-history-next', mode='command')
2097 # config.bind('<Ctrl-P>', 'command-history-prev', mode='command')
2098 # config.bind('<Ctrl-Return>', 'command-accept --rapid', mode='command')
2099 # config.bind('<Ctrl-Shift-C>', 'completion-item-yank --sel', mode='command')
2100 # config.bind('<Ctrl-Shift-Tab>', 'completion-item-focus prev-category', mode='command')
2101 # config.bind('<Ctrl-Shift-W>', 'rl-filename-rubout', mode='command')
2102 # config.bind('<Ctrl-Tab>', 'completion-item-focus next-category', mode='command')
2103 # config.bind('<Ctrl-U>', 'rl-unix-line-discard', mode='command')
2104 # config.bind('<Ctrl-W>', 'rl-rubout " "', mode='command')
2105 # config.bind('<Ctrl-Y>', 'rl-yank', mode='command')
2106 # config.bind('<Down>', 'completion-item-focus --history next', mode='command')
2107 # config.bind('<Escape>', 'mode-leave', mode='command')
2108 # config.bind('<PgDown>', 'completion-item-focus next-page', mode='command')
2109 # config.bind('<PgUp>', 'completion-item-focus prev-page', mode='command')
2110 # config.bind('<Return>', 'command-accept', mode='command')
2111 # config.bind('<Shift-Delete>', 'completion-item-del', mode='command')
2112 # config.bind('<Shift-Tab>', 'completion-item-focus prev', mode='command')
2113 # config.bind('<Tab>', 'completion-item-focus next', mode='command')
2114 # config.bind('<Up>', 'completion-item-focus --history prev', mode='command')
2115
2116 ## Bindings for hint mode
2117 # config.bind('<Ctrl-B>', 'hint all tab-bg', mode='hint')
2118 # config.bind('<Ctrl-F>', 'hint links', mode='hint')
2119 # config.bind('<Ctrl-R>', 'hint --rapid links tab-bg', mode='hint')
2120 # config.bind('<Escape>', 'mode-leave', mode='hint')
2121 # config.bind('<Return>', 'hint-follow', mode='hint')
2122
2123 ## Bindings for insert mode
2124 # config.bind('<Ctrl-E>', 'edit-text', mode='insert')
2125 # config.bind('<Escape>', 'mode-leave', mode='insert')
2126 # config.bind('<Shift-Escape>', 'fake-key <Escape>', mode='insert')
2127 # config.bind('<Shift-Ins>', 'insert-text -- {primary}', mode='insert')
2128
2129 ## Bindings for passthrough mode
2130 # config.bind('<Shift-Escape>', 'mode-leave', mode='passthrough')
2131
2132 ## Bindings for prompt mode
2133 # config.bind('<Alt-B>', 'rl-backward-word', mode='prompt')
2134 # config.bind('<Alt-Backspace>', 'rl-backward-kill-word', mode='prompt')
2135 # config.bind('<Alt-D>', 'rl-kill-word', mode='prompt')
2136 # config.bind('<Alt-E>', 'prompt-fileselect-external', mode='prompt')
2137 # config.bind('<Alt-F>', 'rl-forward-word', mode='prompt')
2138 # config.bind('<Alt-Shift-Y>', 'prompt-yank --sel', mode='prompt')
2139 # config.bind('<Alt-Y>', 'prompt-yank', mode='prompt')
2140 # config.bind('<Ctrl-?>', 'rl-delete-char', mode='prompt')
2141 # config.bind('<Ctrl-A>', 'rl-beginning-of-line', mode='prompt')
2142 # config.bind('<Ctrl-B>', 'rl-backward-char', mode='prompt')
2143 # config.bind('<Ctrl-E>', 'rl-end-of-line', mode='prompt')
2144 # config.bind('<Ctrl-F>', 'rl-forward-char', mode='prompt')
2145 # config.bind('<Ctrl-H>', 'rl-backward-delete-char', mode='prompt')
2146 # config.bind('<Ctrl-K>', 'rl-kill-line', mode='prompt')
2147 # config.bind('<Ctrl-P>', 'prompt-open-download --pdfjs', mode='prompt')
2148 # config.bind('<Ctrl-Shift-W>', 'rl-filename-rubout', mode='prompt')
2149 # config.bind('<Ctrl-U>', 'rl-unix-line-discard', mode='prompt')
2150 # config.bind('<Ctrl-W>', 'rl-rubout " "', mode='prompt')
2151 # config.bind('<Ctrl-X>', 'prompt-open-download', mode='prompt')
2152 # config.bind('<Ctrl-Y>', 'rl-yank', mode='prompt')
2153 # config.bind('<Down>', 'prompt-item-focus next', mode='prompt')
2154 # config.bind('<Escape>', 'mode-leave', mode='prompt')
2155 # config.bind('<Return>', 'prompt-accept', mode='prompt')
2156 # config.bind('<Shift-Tab>', 'prompt-item-focus prev', mode='prompt')
2157 # config.bind('<Tab>', 'prompt-item-focus next', mode='prompt')
2158 # config.bind('<Up>', 'prompt-item-focus prev', mode='prompt')
2159
2160 ## Bindings for register mode
2161 # config.bind('<Escape>', 'mode-leave', mode='register')
2162
2163 ## Bindings for yesno mode
2164 # config.bind('<Alt-Shift-Y>', 'prompt-yank --sel', mode='yesno')
2165 # config.bind('<Alt-Y>', 'prompt-yank', mode='yesno')
2166 # config.bind('<Escape>', 'mode-leave', mode='yesno')
2167 # config.bind('<Return>', 'prompt-accept', mode='yesno')
2168 # config.bind('N', 'prompt-accept --save no', mode='yesno')
2169 # config.bind('Y', 'prompt-accept --save yes', mode='yesno')
2170 # config.bind('n', 'prompt-accept no', mode='yesno')
2171 # config.bind('y', 'prompt-accept yes', mode='yesno')
2172
2173 config.source('themes/nord-qutebrowser.py')