From f8064e2d75203bfb578e8d0b483352be8de19061 Mon Sep 17 00:00:00 2001 From: surtur Date: Tue, 23 Aug 2022 16:28:52 +0200 Subject: [PATCH] qutebrowser: set fileselect.folder.command --- .config/qutebrowser/config.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index cbd92fd..e298b62 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -325,6 +325,14 @@ c.editor.command = ['kitty', 'vim', '-f', '{file}'] # Type: Encoding c.editor.encoding = 'utf-8' +# Command (and arguments) to use for selecting a single folder in forms. +# The command should write the selected folder path to the specified +# file or stdout. The following placeholders are defined: * `{}`: +# Filename of the file to be written to. If not contained in any +# argument, the standard output of the command is read instead. +# Type: ShellCommand +c.fileselect.folder.command = ['kitty', 'ranger', '--choosedir={}'] + # CSS selectors used to determine which elements on a page should have # hints. # Type: Dict