summaryrefslogtreecommitdiff
path: root/doc/help/commands.asciidoc
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-09-15 16:30:54 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-09-15 16:30:54 +0200
commitafb3e8e01b31319c66c4e666b8a3b1d8ba55db24 (patch)
tree01a53600ab61ca7dc8ae1ca8c5c9469b6d6f3ed3 /doc/help/commands.asciidoc
parent55fb6a17fc130472da85ec861edc5f667f70b959 (diff)
downloadqutebrowser-afb3e8e01b31319c66c4e666b8a3b1d8ba55db24.tar.gz
qutebrowser-afb3e8e01b31319c66c4e666b8a3b1d8ba55db24.zip
Improve jseval --world descriptions
Diffstat (limited to 'doc/help/commands.asciidoc')
-rw-r--r--doc/help/commands.asciidoc11
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/help/commands.asciidoc b/doc/help/commands.asciidoc
index 6c9b7f1a8..b9e525075 100644
--- a/doc/help/commands.asciidoc
+++ b/doc/help/commands.asciidoc
@@ -765,7 +765,16 @@ Evaluate a JavaScript string.
* +*-u*+, +*--url*+: Interpret js-code as a `javascript:...` URL.
* +*-q*+, +*--quiet*+: Don't show resulting JS object.
-* +*-w*+, +*--world*+: Ignored on QtWebKit. On QtWebEngine, a world ID or name to run the snippet in.
+* +*-w*+, +*--world*+: Ignored on QtWebKit. On QtWebEngine, a world ID or name to run the snippet in. Predefined world names are:
+
+
+ - `main` (same world as the web page's JavaScript and
+ Greasemonkey, unless overridden via `@qute-js-world`)
+ - `application` (used for internal qutebrowser JS code,
+ should not be used via `:jseval` unless you know what
+ you're doing)
+ - `user` (currently unused)
+ - `jseval` (used for this command by default)
==== note