mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00
Fix #926: rebind all rapid binds from g; to ;g
This commit is contained in:
parent
99cb56d4ad
commit
cc94f7f790
2 changed files with 17 additions and 17 deletions
|
@ -166,22 +166,22 @@ const DEFAULTS = o({
|
|||
";O": "hint -W fillcmdline_notrail open ",
|
||||
";W": "hint -W fillcmdline_notrail winopen ",
|
||||
";T": "hint -W fillcmdline_notrail tabopen ",
|
||||
"g;i": "hint -qi",
|
||||
"g;I": "hint -qI",
|
||||
"g;k": "hint -qk",
|
||||
"g;y": "hint -qy",
|
||||
"g;p": "hint -qp",
|
||||
"g;P": "hint -qP",
|
||||
"g;r": "hint -qr",
|
||||
"g;s": "hint -qs",
|
||||
"g;S": "hint -qS",
|
||||
"g;a": "hint -qa",
|
||||
"g;A": "hint -qA",
|
||||
"g;;": "hint -q;",
|
||||
"g;#": "hint -q#",
|
||||
"g;v": "hint -qW exclaim_quiet mpv",
|
||||
"g;w": "hint -qw",
|
||||
"g;b": "hint -qb",
|
||||
";gi": "hint -qi",
|
||||
";gI": "hint -qI",
|
||||
";gk": "hint -qk",
|
||||
";gy": "hint -qy",
|
||||
";gp": "hint -qp",
|
||||
";gP": "hint -qP",
|
||||
";gr": "hint -qr",
|
||||
";gs": "hint -qs",
|
||||
";gS": "hint -qS",
|
||||
";ga": "hint -qa",
|
||||
";gA": "hint -qA",
|
||||
";g;": "hint -q;",
|
||||
";g#": "hint -q#",
|
||||
";gv": "hint -qW exclaim_quiet mpv",
|
||||
";gw": "hint -qw",
|
||||
";gb": "hint -qb",
|
||||
"<S-Insert>": "mode ignore",
|
||||
"<CA-Esc>": "mode ignore",
|
||||
"<CA-`>": "mode ignore",
|
||||
|
|
|
@ -2915,7 +2915,7 @@ import * as hinting from "./hinting"
|
|||
- -q* quick (or rapid) hints mode. Stay in hint mode until you press <Esc>, e.g. `:hint -qb` to open multiple hints in the background or `:hint -qW excmd` to execute excmd once for each hint. This will return an array containing all elements or the result of executed functions (e.g. `hint -qpipe a href` will return an array of links).
|
||||
- -br deprecated, use `-qb` instead
|
||||
|
||||
Excepting the custom selector mode and background hint mode, each of these hint modes is available by default as `;<option character>`, so e.g. `;y` to yank a link's target; `g;<option character>` starts rapid hint mode for all modes where it makes sense, and some others.
|
||||
Excepting the custom selector mode and background hint mode, each of these hint modes is available by default as `;<option character>`, so e.g. `;y` to yank a link's target; `;g<option character>` starts rapid hint mode for all modes where it makes sense, and some others.
|
||||
|
||||
To open a hint in the background, the default bind is `F`.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue