configdata: Add nnn to completions

This commit is contained in:
Florian Bruhin 2021-01-28 17:25:04 +01:00
parent a5c53a307a
commit 49291560ff
2 changed files with 4 additions and 0 deletions

View File

@ -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)

View File

@ -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.