Update docs
This commit is contained in:
parent
153b9db8c2
commit
4576fd9840
@ -55,6 +55,9 @@ Changed
|
|||||||
title is changed via javascript.
|
title is changed via javascript.
|
||||||
- `:hint` now has a `--mode <mode>` flag to override the hint mode configured
|
- `:hint` now has a `--mode <mode>` flag to override the hint mode configured
|
||||||
using the `hints -> mode` setting.
|
using the `hints -> mode` setting.
|
||||||
|
- With `new-instance-open-target` set to a tab option, the tab is now opened in
|
||||||
|
the most recently focused (instead of the last opened) window. This can be
|
||||||
|
configured with the new `new-instance-open-target.window` setting.
|
||||||
|
|
||||||
Removed
|
Removed
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
@ -177,6 +177,7 @@ Contributors, sorted by the number of commits in descending order:
|
|||||||
* Oliver Caldwell
|
* Oliver Caldwell
|
||||||
* Jonas Schürmann
|
* Jonas Schürmann
|
||||||
* error800
|
* error800
|
||||||
|
* Niklas Haas
|
||||||
* Liam BEGUIN
|
* Liam BEGUIN
|
||||||
* skinnay
|
* skinnay
|
||||||
* Zach-Button
|
* Zach-Button
|
||||||
@ -202,7 +203,6 @@ Contributors, sorted by the number of commits in descending order:
|
|||||||
* Samuel Loury
|
* Samuel Loury
|
||||||
* Peter Michely
|
* Peter Michely
|
||||||
* Panashe M. Fundira
|
* Panashe M. Fundira
|
||||||
* Niklas Haas
|
|
||||||
* Link
|
* Link
|
||||||
* Larry Hynes
|
* Larry Hynes
|
||||||
* Johannes Altmanninger
|
* Johannes Altmanninger
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
|<<general-site-specific-quirks,site-specific-quirks>>|Enable workarounds for broken sites.
|
|<<general-site-specific-quirks,site-specific-quirks>>|Enable workarounds for broken sites.
|
||||||
|<<general-default-encoding,default-encoding>>|Default encoding to use for websites.
|
|<<general-default-encoding,default-encoding>>|Default encoding to use for websites.
|
||||||
|<<general-new-instance-open-target,new-instance-open-target>>|How to open links in an existing instance if a new one is launched.
|
|<<general-new-instance-open-target,new-instance-open-target>>|How to open links in an existing instance if a new one is launched.
|
||||||
|
|<<general-new-instance-open-target.window,new-instance-open-target.window>>|Which window to choose when opening links as new tabs.
|
||||||
|<<general-log-javascript-console,log-javascript-console>>|How to log javascript console messages.
|
|<<general-log-javascript-console,log-javascript-console>>|How to log javascript console messages.
|
||||||
|<<general-save-session,save-session>>|Whether to always save the open pages.
|
|<<general-save-session,save-session>>|Whether to always save the open pages.
|
||||||
|<<general-session-default-name,session-default-name>>|The name of the session to save by default, or empty for the last loaded session.
|
|<<general-session-default-name,session-default-name>>|The name of the session to save by default, or empty for the last loaded session.
|
||||||
@ -49,7 +50,6 @@
|
|||||||
|<<ui-hide-statusbar,hide-statusbar>>|Whether to hide the statusbar unless a message is shown.
|
|<<ui-hide-statusbar,hide-statusbar>>|Whether to hide the statusbar unless a message is shown.
|
||||||
|<<ui-statusbar-padding,statusbar-padding>>|Padding for statusbar (top, bottom, left, right).
|
|<<ui-statusbar-padding,statusbar-padding>>|Padding for statusbar (top, bottom, left, right).
|
||||||
|<<ui-window-title-format,window-title-format>>|The format to use for the window title. The following placeholders are defined:
|
|<<ui-window-title-format,window-title-format>>|The format to use for the window title. The following placeholders are defined:
|
||||||
|<<ui-hide-mouse-cursor,hide-mouse-cursor>>|Whether to hide the mouse cursor.
|
|
||||||
|<<ui-modal-js-dialog,modal-js-dialog>>|Use standard JavaScript modal dialog for alert() and confirm()
|
|<<ui-modal-js-dialog,modal-js-dialog>>|Use standard JavaScript modal dialog for alert() and confirm()
|
||||||
|<<ui-hide-wayland-decoration,hide-wayland-decoration>>|Hide the window decoration when using wayland (requires restart)
|
|<<ui-hide-wayland-decoration,hide-wayland-decoration>>|Hide the window decoration when using wayland (requires restart)
|
||||||
|<<ui-keyhint-blacklist,keyhint-blacklist>>|Keychains that shouldn't be shown in the keyhint dialog
|
|<<ui-keyhint-blacklist,keyhint-blacklist>>|Keychains that shouldn't be shown in the keyhint dialog
|
||||||
@ -448,6 +448,17 @@ Valid values:
|
|||||||
|
|
||||||
Default: +pass:[tab]+
|
Default: +pass:[tab]+
|
||||||
|
|
||||||
|
[[general-new-instance-open-target.window]]
|
||||||
|
=== new-instance-open-target.window
|
||||||
|
Which window to choose when opening links as new tabs.
|
||||||
|
|
||||||
|
Valid values:
|
||||||
|
|
||||||
|
* +last-opened+: Open new tabs in the last opened window.
|
||||||
|
* +last-focused+: Open new tabs in the most recently focused window.
|
||||||
|
|
||||||
|
Default: +pass:[last-focused]+
|
||||||
|
|
||||||
[[general-log-javascript-console]]
|
[[general-log-javascript-console]]
|
||||||
=== log-javascript-console
|
=== log-javascript-console
|
||||||
How to log javascript console messages.
|
How to log javascript console messages.
|
||||||
@ -651,17 +662,6 @@ The format to use for the window title. The following placeholders are defined:
|
|||||||
|
|
||||||
Default: +pass:[{perc}{title}{title_sep}qutebrowser]+
|
Default: +pass:[{perc}{title}{title_sep}qutebrowser]+
|
||||||
|
|
||||||
[[ui-hide-mouse-cursor]]
|
|
||||||
=== hide-mouse-cursor
|
|
||||||
Whether to hide the mouse cursor.
|
|
||||||
|
|
||||||
Valid values:
|
|
||||||
|
|
||||||
* +true+
|
|
||||||
* +false+
|
|
||||||
|
|
||||||
Default: +pass:[false]+
|
|
||||||
|
|
||||||
[[ui-modal-js-dialog]]
|
[[ui-modal-js-dialog]]
|
||||||
=== modal-js-dialog
|
=== modal-js-dialog
|
||||||
Use standard JavaScript modal dialog for alert() and confirm()
|
Use standard JavaScript modal dialog for alert() and confirm()
|
||||||
|
Loading…
Reference in New Issue
Block a user