Update docs

This commit is contained in:
Florian Bruhin 2016-11-22 20:37:00 +01:00
parent f0cc1de808
commit 7ffabb2b92
5 changed files with 10 additions and 3 deletions

View File

@ -147,6 +147,8 @@ Changed
`prev`/`next`/`last-used` to remove ambiguity.
- The `ui -> user-stylesheet` setting now only takes filenames, not CSS snippets
- `ui -> window-title-format` now has a new `{backend} ` replacement
- `:hint` has a new `--add-history` argument to add the URL to the history for
yank/spawn targets.
Deprecated
~~~~~~~~~~

View File

@ -188,6 +188,7 @@ Contributors, sorted by the number of commits in descending order:
* Jonas Schürmann
* error800
* Michael Hoang
* Maciej Wołczyk
* Liam BEGUIN
* Julie Engel
* skinnay

View File

@ -341,7 +341,8 @@ Show help about a command or setting.
[[hint]]
=== hint
Syntax: +:hint [*--rapid*] [*--mode* 'mode'] ['group'] ['target'] ['args' ['args' ...]]+
Syntax: +:hint [*--rapid*] [*--mode* 'mode'] [*--add-history*]
['group'] ['target'] ['args' ['args' ...]]+
Start hinting.
@ -406,6 +407,8 @@ Start hinting.
* +*-a*+, +*--add-history*+: Whether to add the spawned or yanked link to the browsing history.
==== note
* This command does not split arguments after the last argument and handles quotes literally.

View File

@ -610,8 +610,8 @@ class HintManager(QObject):
rapid: Whether to do rapid hinting. This is only possible with
targets `tab` (with background-tabs=true), `tab-bg`,
`window`, `run`, `hover`, `userscript` and `spawn`.
add_history: Whether to add spawned or yanked link to the
browsing history.
add_history: Whether to add the spawned or yanked link to the
browsing history.
group: The element types to hint.
- `all`: All clickable elements.

View File

@ -432,6 +432,7 @@ def _get_authors():
'Alexey Glushko': 'haitaka',
'Corentin Jule': 'Corentin Julé',
'Claire C.C': 'Claire Cavanaugh',
'Rahid': 'Maciej Wołczyk',
}
commits = subprocess.check_output(['git', 'log', '--format=%aN'])
authors = [corrections.get(author, author)