From 2a18eeb558d2b4faa33b5dbba62de90d4e27b9e6 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 11 Nov 2021 16:30:14 +0100 Subject: Update docs/changelog --- doc/changelog.asciidoc | 2 ++ doc/help/commands.asciidoc | 1 + qutebrowser/browser/commands.py | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc index f86b84622..f6e58a8b9 100644 --- a/doc/changelog.asciidoc +++ b/doc/changelog.asciidoc @@ -24,6 +24,8 @@ Changed - Improved message if a spawned process wasn't found and a Flatpak container is in use. +- The `:tab-move` command now takes `start` and `end` as `index` to move a tab + to the first/last position. [[v2.4.1]] v2.4.1 (unreleased) diff --git a/doc/help/commands.asciidoc b/doc/help/commands.asciidoc index 8c11e15cc..442c136a7 100644 --- a/doc/help/commands.asciidoc +++ b/doc/help/commands.asciidoc @@ -1431,6 +1431,7 @@ If neither is given, move it to the first position. ==== positional arguments * +'index'+: `+` or `-` to move relative to the current tab by count, or a default of 1 space. A tab index to move to that index. + `start` and `end` to move to the start and the end. ==== count diff --git a/qutebrowser/browser/commands.py b/qutebrowser/browser/commands.py index 03953ba7e..edc7e6211 100644 --- a/qutebrowser/browser/commands.py +++ b/qutebrowser/browser/commands.py @@ -1016,7 +1016,7 @@ class CommandDispatcher: index: `+` or `-` to move relative to the current tab by count, or a default of 1 space. A tab index to move to that index. - `start` and `end` to move to the start and the end + `start` and `end` to move to the start and the end. count: If moving relatively: Offset. If moving absolutely: New position (default: 0). This overrides the index argument, if given. -- cgit v1.2.3-54-g00ecf