From f4e899e2afface41e05d392bfa5734edb63ca5f1 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 13 Jun 2022 14:42:46 +0200 Subject: Add setting reference --- doc/help/commands.asciidoc | 2 ++ qutebrowser/mainwindow/prompt.py | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/help/commands.asciidoc b/doc/help/commands.asciidoc index 03fee55d4..d38bb5a87 100644 --- a/doc/help/commands.asciidoc +++ b/doc/help/commands.asciidoc @@ -1871,6 +1871,8 @@ Accept the current prompt. === prompt-fileselect-external Choose a location using a configured external picker. +This spawns the external fileselector configured via `fileselect.folder.command`. + [[prompt-item-focus]] === prompt-item-focus Syntax: +:prompt-item-focus 'which'+ diff --git a/qutebrowser/mainwindow/prompt.py b/qutebrowser/mainwindow/prompt.py index 9db84b378..5d3bced59 100644 --- a/qutebrowser/mainwindow/prompt.py +++ b/qutebrowser/mainwindow/prompt.py @@ -471,7 +471,11 @@ class PromptContainer(QWidget): instance='prompt-container', scope='window', modes=[usertypes.KeyMode.prompt]) def prompt_fileselect_external(self): - """Choose a location using a configured external picker.""" + """Choose a location using a configured external picker. + + This spawns the external fileselector configured via + `fileselect.folder.command`. + """ assert self._prompt is not None if not isinstance(self._prompt, FilenamePrompt): raise cmdutils.CommandError( -- cgit v1.2.3-54-g00ecf