summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-01-28 17:25:04 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-01-28 17:25:28 +0100
commit67166df6553fa1a4fec03b5c137336080c2df045 (patch)
treefb917ec501aa58379b1a518eb66d70c37299f4aa
parenta20fadfd199405db4fcfc800409b73714f0f18b9 (diff)
downloadqutebrowser-67166df6553fa1a4fec03b5c137336080c2df045.tar.gz
qutebrowser-67166df6553fa1a4fec03b5c137336080c2df045.zip
configdata: Add nnn to completions
(cherry picked from commit 49291560ff51b6ec7b52d122a71bbf81052a690f)
-rw-r--r--doc/changelog.asciidoc2
-rw-r--r--qutebrowser/config/configdata.yml2
2 files changed, 4 insertions, 0 deletions
diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc
index a70124af9..8e768a1ea 100644
--- a/doc/changelog.asciidoc
+++ b/doc/changelog.asciidoc
@@ -45,6 +45,8 @@ Changed
handling (including workarounds for QtWebEngine crashes) inside qutebrowser to
break. This will be handled properly in a future version, but this release now
shows a warning on standard output if this is the case.
+- The config completion for `fileselect.*.command` now also includes the "nnn"
+ terminal file manager.
[[v2.0.0]]
v2.0.0 (2021-01-28)
diff --git a/qutebrowser/config/configdata.yml b/qutebrowser/config/configdata.yml
index 0e8e40cd4..60705d9d2 100644
--- a/qutebrowser/config/configdata.yml
+++ b/qutebrowser/config/configdata.yml
@@ -1263,6 +1263,7 @@ fileselect.single_file.command:
completions:
- ['["xterm", "-e", "ranger", "--choosefile={}"]', "Ranger in xterm"]
- ['["xterm", "-e", "vifm", "--choose-file", "{}"]', "vifm in xterm"]
+ - ['["xterm", "-e", "nnn", "-p", "{}"]', "nnn in xterm"]
default: ['xterm', '-e', 'ranger', '--choosefile={}']
desc: >-
Command (and arguments) to use for selecting a single file in forms.
@@ -1279,6 +1280,7 @@ fileselect.multiple_files.command:
completions:
- ['["xterm", "-e", "ranger", "--choosefiles={}"]', "Ranger in xterm"]
- ['["xterm", "-e", "vifm", "--choose-files", "{}"]', "vifm in xterm"]
+ - ['["xterm", "-e", "nnn", "-p", "{}"]', "nnn in xterm"]
default: ['xterm', '-e', 'ranger', '--choosefiles={}']
desc: >-
Command (and arguments) to use for selecting multiple files in forms.