Update docs

This commit is contained in:
Florian Bruhin 2022-03-31 13:27:40 +02:00
parent d68357f16c
commit afadc1cf14
2 changed files with 13 additions and 1 deletions

View File

@ -69,7 +69,10 @@ Added
based on the new URL when navigating or switching tabs.
- New `qt.chromium.sandboxing` setting which allows to disable Chromium's
sandboxing (mainly intended for development and testing)
- New `QUTE_TAB_INDEX` variable for userscripts, containing the index of the current tab.
- New `QUTE_TAB_INDEX` variable for userscripts, containing the index of the
current tab.
- New `editor.remove_file` setting which can be set to `False` to keep all
temporary editor files after closing the external editor.
Fixed
~~~~~

View File

@ -213,6 +213,7 @@
|<<downloads.remove_finished,downloads.remove_finished>>|Duration (in milliseconds) to wait before removing finished downloads.
|<<editor.command,editor.command>>|Editor (and arguments) to use for the `edit-*` commands.
|<<editor.encoding,editor.encoding>>|Encoding to use for the editor.
|<<editor.remove_file,editor.remove_file>>|Delete the temporary file upon closing the editor.
|<<fileselect.folder.command,fileselect.folder.command>>|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.
|<<fileselect.handler,fileselect.handler>>|Handler for selecting file(s) in forms. If `external`, then the commands specified by `fileselect.single_file.command` and `fileselect.multiple_files.command` are used to select one or multiple files respectively.
|<<fileselect.multiple_files.command,fileselect.multiple_files.command>>|Command (and arguments) to use for selecting multiple files in forms. The command should write the selected file paths to the specified file or to stdout, separated by newlines.
@ -2941,6 +2942,14 @@ Type: <<types,Encoding>>
Default: +pass:[utf-8]+
[[editor.remove_file]]
=== editor.remove_file
Delete the temporary file upon closing the editor.
Type: <<types,Bool>>
Default: +pass:[true]+
[[fileselect.folder.command]]
=== fileselect.folder.command
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.