diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index c8dafa97b..c22ede6eb 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -55,6 +55,9 @@ Changed title is changed via javascript. - `:hint` now has a `--mode ` flag to override the hint mode configured 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 ~~~~~~~ diff --git a/README.asciidoc b/README.asciidoc index f8bbc1404..65bd44d6f 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -177,6 +177,7 @@ Contributors, sorted by the number of commits in descending order: * Oliver Caldwell * Jonas Schürmann * error800 +* Niklas Haas * Liam BEGUIN * skinnay * Zach-Button @@ -202,7 +203,6 @@ Contributors, sorted by the number of commits in descending order: * Samuel Loury * Peter Michely * Panashe M. Fundira -* Niklas Haas * Link * Larry Hynes * Johannes Altmanninger diff --git a/doc/help/settings.asciidoc b/doc/help/settings.asciidoc index 7670057fb..2f680d3c8 100644 --- a/doc/help/settings.asciidoc +++ b/doc/help/settings.asciidoc @@ -23,6 +23,7 @@ |<>|Enable workarounds for broken sites. |<>|Default encoding to use for websites. |<>|How to open links in an existing instance if a new one is launched. +|<>|Which window to choose when opening links as new tabs. |<>|How to log javascript console messages. |<>|Whether to always save the open pages. |<>|The name of the session to save by default, or empty for the last loaded session. @@ -49,7 +50,6 @@ |<>|Whether to hide the statusbar unless a message is shown. |<>|Padding for statusbar (top, bottom, left, right). |<>|The format to use for the window title. The following placeholders are defined: -|<>|Whether to hide the mouse cursor. |<>|Use standard JavaScript modal dialog for alert() and confirm() |<>|Hide the window decoration when using wayland (requires restart) |<>|Keychains that shouldn't be shown in the keyhint dialog @@ -448,6 +448,17 @@ Valid values: 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]] === log-javascript-console 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]+ -[[ui-hide-mouse-cursor]] -=== hide-mouse-cursor -Whether to hide the mouse cursor. - -Valid values: - - * +true+ - * +false+ - -Default: +pass:[false]+ - [[ui-modal-js-dialog]] === modal-js-dialog Use standard JavaScript modal dialog for alert() and confirm()