summaryrefslogtreecommitdiff
path: root/qutebrowser/config/configdata.yml
diff options
context:
space:
mode:
Diffstat (limited to 'qutebrowser/config/configdata.yml')
-rw-r--r--qutebrowser/config/configdata.yml14
1 files changed, 8 insertions, 6 deletions
diff --git a/qutebrowser/config/configdata.yml b/qutebrowser/config/configdata.yml
index b4805665b..34d8bec96 100644
--- a/qutebrowser/config/configdata.yml
+++ b/qutebrowser/config/configdata.yml
@@ -1259,7 +1259,7 @@ fileselect.handler:
fileselect.single_file.command:
type:
name: ShellCommand
- placeholder: true
+ placeholder: false
completions:
- ['["xterm", "-e", "ranger", "--choosefile={}"]', "Ranger in xterm"]
- ['["xterm", "-e", "vifm", "--choose-files", "{}"]', "vifm in xterm"]
@@ -1267,16 +1267,17 @@ fileselect.single_file.command:
default: ['xterm', '-e', 'ranger', '--choosefile={}']
desc: >-
Command (and arguments) to use for selecting a single file in forms.
- The command should write the selected file path to the specified file.
+ The command should write the selected file path to the specified file or stdout.
The following placeholders are defined:
- * `{}`: Filename of the file to be written to.
+ * `{}`: Filename of the file to be written to. If not contained in any argument, the
+ standard output of the command is read instead.
fileselect.multiple_files.command:
type:
name: ShellCommand
- placeholder: true
+ placeholder: false
completions:
- ['["xterm", "-e", "ranger", "--choosefiles={}"]', "Ranger in xterm"]
- ['["xterm", "-e", "vifm", "--choose-files", "{}"]', "vifm in xterm"]
@@ -1284,12 +1285,13 @@ fileselect.multiple_files.command:
default: ['xterm', '-e', 'ranger', '--choosefiles={}']
desc: >-
Command (and arguments) to use for selecting multiple files in forms.
- The command should write the selected file paths to the specified file,
+ The command should write the selected file paths to the specified file or to stdout,
separated by newlines.
The following placeholders are defined:
- * `{}`: Filename of the file to be written to.
+ * `{}`: Filename of the file to be written to. If not contained in any argument, the
+ standard output of the command is read instead.
## hints