qutebrowser: set editor.{command,encoding}

This commit is contained in:
surtur 2022-08-23 16:16:46 +02:00
parent 648118ab3f
commit 8d0fdf6a6c
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

@ -312,6 +312,19 @@ c.content.webgl = True
# Type: Bool
c.content.mute = True
# Editor (and arguments) to use for the `edit-*` commands. The following
# placeholders are defined: * `{file}`: Filename of the file to be
# edited. * `{line}`: Line in which the caret is found in the text. *
# `{column}`: Column in which the caret is found in the text. *
# `{line0}`: Same as `{line}`, but starting from index 0. * `{column0}`:
# Same as `{column}`, but starting from index 0.
# Type: ShellCommand
c.editor.command = ['kitty', 'vim', '-f', '{file}']
# Encoding to use for the editor.
# Type: Encoding
c.editor.encoding = 'utf-8'
# CSS selectors used to determine which elements on a page should have
# hints.
# Type: Dict