Update docs
This commit is contained in:
parent
3cd2910fa2
commit
0c792d228e
@ -21,6 +21,8 @@ v1.1.0 (unreleased)
|
|||||||
Added
|
Added
|
||||||
~~~~~
|
~~~~~
|
||||||
|
|
||||||
|
- Initial support for Greasemonkey scripts. There are still some rough edges,
|
||||||
|
but many scripts should already work.
|
||||||
- There's now a `misc/Makefile` file in releases, which should help
|
- There's now a `misc/Makefile` file in releases, which should help
|
||||||
distributions which package qutebrowser, as they can run something like
|
distributions which package qutebrowser, as they can run something like
|
||||||
`make -f misc/Makefile DESTDIR="$pkgdir" install` now.
|
`make -f misc/Makefile DESTDIR="$pkgdir" install` now.
|
||||||
|
@ -54,6 +54,7 @@ It is possible to run or bind multiple commands by separating them with `;;`.
|
|||||||
|<<follow-selected,follow-selected>>|Follow the selected text.
|
|<<follow-selected,follow-selected>>|Follow the selected text.
|
||||||
|<<forward,forward>>|Go forward in the history of the current tab.
|
|<<forward,forward>>|Go forward in the history of the current tab.
|
||||||
|<<fullscreen,fullscreen>>|Toggle fullscreen mode.
|
|<<fullscreen,fullscreen>>|Toggle fullscreen mode.
|
||||||
|
|<<greasemonkey-reload,greasemonkey-reload>>|Re-read Greasemonkey scripts from disk.
|
||||||
|<<help,help>>|Show help about a command or setting.
|
|<<help,help>>|Show help about a command or setting.
|
||||||
|<<hint,hint>>|Start hinting.
|
|<<hint,hint>>|Start hinting.
|
||||||
|<<history,history>>|Show browsing history.
|
|<<history,history>>|Show browsing history.
|
||||||
@ -491,6 +492,12 @@ Toggle fullscreen mode.
|
|||||||
==== optional arguments
|
==== optional arguments
|
||||||
* +*-l*+, +*--leave*+: Only leave fullscreen if it was entered by the page.
|
* +*-l*+, +*--leave*+: Only leave fullscreen if it was entered by the page.
|
||||||
|
|
||||||
|
[[greasemonkey-reload]]
|
||||||
|
=== greasemonkey-reload
|
||||||
|
Re-read Greasemonkey scripts from disk.
|
||||||
|
|
||||||
|
The scripts are read from a 'greasemonkey' subdirectory in qutebrowser's data directory (see `:version`).
|
||||||
|
|
||||||
[[help]]
|
[[help]]
|
||||||
=== help
|
=== help
|
||||||
Syntax: +:help [*--tab*] [*--bg*] [*--window*] ['topic']+
|
Syntax: +:help [*--tab*] [*--bg*] [*--window*] ['topic']+
|
||||||
|
@ -149,7 +149,11 @@ class GreasemonkeyManager(QObject):
|
|||||||
@cmdutils.register(name='greasemonkey-reload',
|
@cmdutils.register(name='greasemonkey-reload',
|
||||||
instance='greasemonkey')
|
instance='greasemonkey')
|
||||||
def load_scripts(self):
|
def load_scripts(self):
|
||||||
"""Re-Read greasemonkey scripts from disk."""
|
"""Re-read Greasemonkey scripts from disk.
|
||||||
|
|
||||||
|
The scripts are read from a 'greasemonkey' subdirectory in qutebrowser's
|
||||||
|
data directory (see `:version`).
|
||||||
|
"""
|
||||||
self._run_start = []
|
self._run_start = []
|
||||||
self._run_end = []
|
self._run_end = []
|
||||||
self._run_idle = []
|
self._run_idle = []
|
||||||
|
Loading…
Reference in New Issue
Block a user