Document :hint input and add default binding

See #1607, #1499
This commit is contained in:
Florian Bruhin 2016-06-30 17:33:51 +02:00
parent fcbb5b8bac
commit ce8315b720
4 changed files with 5 additions and 0 deletions

View File

@ -21,6 +21,7 @@ Added
~~~~~
- New `{host}` replacement for tab- and window titles which evaluates to the current host.
- Add new default binding `;t` for `:hint input`.
Changed
~~~~~~~
@ -53,6 +54,7 @@ Added
- New `hints -> find-implementation` to select which implementation (JS/Python)
should be used to find hints on a page. The `javascript` implementation is
better, but slower.
- New `inputs` group for `:hint` to hint text input fields.
Changed
~~~~~~~

View File

@ -308,6 +308,7 @@ Start hinting.
- `all`: All clickable elements.
- `links`: Only links.
- `images`: Only images.
- `inputs`: Only input fields.

View File

@ -772,6 +772,7 @@ class HintManager(QObject):
- `all`: All clickable elements.
- `links`: Only links.
- `images`: Only images.
- `inputs`: Only input fields.
target: What to do with the selected element.

View File

@ -1472,6 +1472,7 @@ KEY_DATA = collections.OrderedDict([
('hint --rapid links tab-bg', [';r']),
('hint --rapid links window', [';R']),
('hint links download', [';d']),
('hint inputs', [';t']),
('scroll left', ['h']),
('scroll down', ['j']),
('scroll up', ['k']),