parent
fcbb5b8bac
commit
ce8315b720
@ -21,6 +21,7 @@ Added
|
|||||||
~~~~~
|
~~~~~
|
||||||
|
|
||||||
- New `{host}` replacement for tab- and window titles which evaluates to the current host.
|
- New `{host}` replacement for tab- and window titles which evaluates to the current host.
|
||||||
|
- Add new default binding `;t` for `:hint input`.
|
||||||
|
|
||||||
Changed
|
Changed
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
@ -53,6 +54,7 @@ Added
|
|||||||
- New `hints -> find-implementation` to select which implementation (JS/Python)
|
- New `hints -> find-implementation` to select which implementation (JS/Python)
|
||||||
should be used to find hints on a page. The `javascript` implementation is
|
should be used to find hints on a page. The `javascript` implementation is
|
||||||
better, but slower.
|
better, but slower.
|
||||||
|
- New `inputs` group for `:hint` to hint text input fields.
|
||||||
|
|
||||||
Changed
|
Changed
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
@ -308,6 +308,7 @@ Start hinting.
|
|||||||
- `all`: All clickable elements.
|
- `all`: All clickable elements.
|
||||||
- `links`: Only links.
|
- `links`: Only links.
|
||||||
- `images`: Only images.
|
- `images`: Only images.
|
||||||
|
- `inputs`: Only input fields.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -772,6 +772,7 @@ class HintManager(QObject):
|
|||||||
- `all`: All clickable elements.
|
- `all`: All clickable elements.
|
||||||
- `links`: Only links.
|
- `links`: Only links.
|
||||||
- `images`: Only images.
|
- `images`: Only images.
|
||||||
|
- `inputs`: Only input fields.
|
||||||
|
|
||||||
target: What to do with the selected element.
|
target: What to do with the selected element.
|
||||||
|
|
||||||
|
@ -1472,6 +1472,7 @@ KEY_DATA = collections.OrderedDict([
|
|||||||
('hint --rapid links tab-bg', [';r']),
|
('hint --rapid links tab-bg', [';r']),
|
||||||
('hint --rapid links window', [';R']),
|
('hint --rapid links window', [';R']),
|
||||||
('hint links download', [';d']),
|
('hint links download', [';d']),
|
||||||
|
('hint inputs', [';t']),
|
||||||
('scroll left', ['h']),
|
('scroll left', ['h']),
|
||||||
('scroll down', ['j']),
|
('scroll down', ['j']),
|
||||||
('scroll up', ['k']),
|
('scroll up', ['k']),
|
||||||
|
Loading…
Reference in New Issue
Block a user