summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-12-02 19:29:04 +0100
committerFlorian Bruhin <me@the-compiler.org>2020-12-02 19:29:04 +0100
commit500de10288f341d852ddb933d92520f3ddae8d38 (patch)
treed6c9128325b5ff2b0279f3598dfdf7a48e51077c
parent6c42f977814a3bfe937235b269bb80a5ba81a7a5 (diff)
downloadqutebrowser-500de10288f341d852ddb933d92520f3ddae8d38.tar.gz
qutebrowser-500de10288f341d852ddb933d92520f3ddae8d38.zip
Improve docs for :spawn -d
-rw-r--r--doc/help/commands.asciidoc3
-rw-r--r--qutebrowser/browser/commands.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/doc/help/commands.asciidoc b/doc/help/commands.asciidoc
index 646d2f27b..0714b4fa1 100644
--- a/doc/help/commands.asciidoc
+++ b/doc/help/commands.asciidoc
@@ -1310,7 +1310,8 @@ Note that the command is *not* run in a shell, so things like `$VAR` or `> outpu
* +*-v*+, +*--verbose*+: Show notifications when the command started/exited.
* +*-o*+, +*--output*+: Show the output in a new tab.
* +*-m*+, +*--output-messages*+: Show the output as messages.
-* +*-d*+, +*--detach*+: Whether the command should be detached from qutebrowser.
+* +*-d*+, +*--detach*+: Detach the command from qutebrowser so that it continues running when qutebrowser quits.
+
==== count
Given to userscripts as $QUTE_COUNT.
diff --git a/qutebrowser/browser/commands.py b/qutebrowser/browser/commands.py
index 34c078d89..18777e250 100644
--- a/qutebrowser/browser/commands.py
+++ b/qutebrowser/browser/commands.py
@@ -1057,7 +1057,8 @@ class CommandDispatcher:
verbose: Show notifications when the command started/exited.
output: Show the output in a new tab.
output_messages: Show the output as messages.
- detach: Whether the command should be detached from qutebrowser.
+ detach: Detach the command from qutebrowser so that it continues
+ running when qutebrowser quits.
cmdline: The commandline to execute.
count: Given to userscripts as $QUTE_COUNT.
"""