From 6c03544e351858e6cc5d3a4fa03469a8917cccee Mon Sep 17 00:00:00 2001 From: Andre Ramnitz Date: Sat, 16 Dec 2023 19:17:28 +0100 Subject: [PATCH] qutebrowser: update config --- qutebrowser/.config/qutebrowser/config.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py index fafca15f..064f6f79 100644 --- a/qutebrowser/.config/qutebrowser/config.py +++ b/qutebrowser/.config/qutebrowser/config.py @@ -524,7 +524,7 @@ c.downloads.prevent_mixed_content = True # `{line0}`: Same as `{line}`, but starting from index 0. * `{column0}`: # Same as `{column}`, but starting from index 0. # Type: ShellCommand -c.editor.command = ['konsole', '--separate', '-e', 'kak', '{file}'] +c.editor.command = ['foot', '-a', 'popup', 'kak', '{file}'] # Handler for selecting file(s) in forms. If `external`, then the # commands specified by `fileselect.single_file.command`, @@ -535,7 +535,7 @@ c.editor.command = ['konsole', '--separate', '-e', 'kak', '{file}'] # Valid values: # - default: Use the default file selector. # - external: Use an external command. -c.fileselect.handler = 'external' +c.fileselect.handler = 'default' # Command (and arguments) to use for selecting a single file in forms. # The command should write the selected file path to the specified file @@ -543,7 +543,7 @@ c.fileselect.handler = 'external' # 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.single_file.command = ['kitty', 'nnn', '-p', '-'] +c.fileselect.single_file.command = [''] # Command (and arguments) to use for selecting multiple files in forms. # The command should write the selected file paths to the specified file @@ -552,7 +552,7 @@ c.fileselect.single_file.command = ['kitty', 'nnn', '-p', '-'] # contained in any argument, the standard output of the command is # read instead. # Type: ShellCommand -c.fileselect.multiple_files.command = ['kitty', 'nnn', '-p', '-'] +c.fileselect.multiple_files.command = [''] # Command (and arguments) to use for selecting a single folder in forms. # The command should write the selected folder path to the specified @@ -560,7 +560,7 @@ c.fileselect.multiple_files.command = ['kitty', 'nnn', '-p', '-'] # 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', 'nnn', '-p', '-'] +c.fileselect.folder.command = [''] # Minimum number of characters used for hint strings. # Type: Int -- 2.51.2