]> git.gir.st - VimFx.git/blob - documentation/commands.md
Document a NoScript bug
[VimFx.git] / documentation / commands.md
1 <!--
2 This is part of the VimFx documentation.
3 Copyright Simon Lydell 2015, 2016.
4 See the file README.md for copying conditions.
5 -->
6
7 # Commands
8
9 Most of VimFx’s commands are straight-forward enough to not need any
10 documentation. For some commands, though, there is a bit more to know.
11
12 In this document, many commands are referred to by their default shortcut. You
13 can of course [change those] if you like. (Read about [modes] to tell the
14 difference between _commands_ and _shortcuts._)
15
16 [change those]: shortcuts.md
17 [modes]: modes.md
18
19 ## Counts
20
21 Some commands support _counts._ That means that you can type a number before a
22 command and it will change its behavior based on that number—the count. For
23 example, typing `12x` would close 12 tabs.
24
25 (As opposed to Vim, you may only supply a count _before_ a command, not in the
26 middle of one. That’s because VimFx’s commands are simple sequences, while Vim’s
27 are operators and motions.)
28
29 ### `gu`
30
31 Goes _count_ levels up in the URL hierarchy.
32
33 ### `H` and `L`
34
35 Goes _count_ pages backward/forward in history.
36
37 ### Scrolling commands
38
39 Specifying a count make them scroll _count_ times as far.
40
41 ### `J`, `K`
42
43 Selects the tab _count_ tabs backward/forward.
44
45 If the count is greater than one they don’t wrap around when reaching the ends
46 of the tab bar, unless:
47
48 - the first tab is selected and `J` is used.
49 - the last tab is selected and `K` is used.
50
51 They only wrap around _once._
52
53 ### `gl`
54
55 Selects the _count_ most recent tab.
56
57 ### `gJ`, `gK`
58
59 Moves the current tab _count_ tabs forward/backward.
60
61 As opposed to `J` and `K`, pinned and non-pinned tabs are handled separately.
62 The first non-pinned tab wraps to the last tab, and the last tab wraps to the
63 first non-pinned tab, and vice versa for non-pinned tabs. Use `gp` to move a tab
64 between the pinned and non-pinned parts of the tab bar.
65
66 Other than the above, the count and wrap semantics work like `J` and `K`.
67
68 ### `g0`, `g^`, `g$`
69
70 `g0` selects the tab at index _count,_ counting from the start.
71
72 `g^` selects the tab at index _count,_ counting from the first non-pinned tab.
73
74 `g$` selects the tab at index _count,_ counting from the end.
75
76 ### `x`
77
78 Closes the current tab and _count_ minus one of the following tabs.
79
80 ### `X`
81
82 Restores the _count_ last closed tabs.
83
84 ### `I`
85
86 Passes on the next _count_ keypresses to the page, without activating VimFx
87 commands.
88
89 ### The `f` commands
90
91 Explained in the their own section below.
92
93 ### `gi`
94
95 Explained in its own section below.
96
97
98 ## Scrolling commands
99
100 Firefox lets you scroll with the arrow keys, page down, page up, home, end and
101 space by default. VimFx provides similar scrolling commands (and actually
102 overrides `<space>`), but they work a little bit differently.
103
104 They scroll _the currently focused element._ If the currently focused element
105 isn’t scrollable, the largest scrollable element on the page (if any, and
106 including the entire page itself) is scrolled.
107
108 You can focus scrollable elements using the `zf` command (or the `f` command).
109 Scrollable browser elements, such as in the dev tools, can be focused using the
110 `zF` command. The right border of hint markers for scrollable elements is styled
111 to remind of a scroll bar, making them easier to recognize among hints for
112 links.
113
114 Note that `zf` and `f` do _not_ add a hint marker for the _largest_ scrollable
115 element (such as the entire page). There’s no need to focus that element, since
116 it is scrolled by default if no other scrollable element is focused, as
117 explained above. (This prevents the largest scrollable element from likely
118 eating your best hint char on most pages; see [The `f` commands]).
119
120 [The `f` commands]: #the-f-commands--hints-mode
121
122 ### Marks: `m` and `` ` ``
123
124 Other than traditional scrolling, VimFx has _marks._ Press `m` followed by a
125 letter to associate the current scroll position with that letter. For example,
126 press `ma` to save the position into mark _a._ Then you can return to that
127 position by pressing `` ` `` followed by the same letter, e.g. `` `a ``.
128
129 One mark is special: `` ` ``. Pressing ``` `` ``` takes you to the scroll
130 position before the last `gg`, `G`, `0`, `$`, `/`, `n`, `N` or `` ` ``. (You can
131 change this mark using the [`scroll.last_position_mark`] pref.)
132
133 [`scroll.last_position_mark`]: options.md#scroll.last_position_mark
134
135 #### Minor notes
136
137 Unlike Vim, you may press _any_ key after `m`, and the scroll position will be
138 associated with that key (Vim allows only a–z, roughly).
139
140 Unlike Vim and Vimium, VimFx has no global marks. The reason is that they would
141 be a lot more complicated to implement and do not seem useful enough to warrant
142 that effort.
143
144 As mentioned above, `m` stores the _current scroll position._ Specifically, that
145 means the scroll position of the element that would be scrolled if the active
146 element isn’t scrollable; see [Scrolling commands] above.
147
148 [Scrolling commands]: #scrolling-commands-1
149
150
151 ## `gi`
152
153 `gi` focuses the text input you last used, or the first one on the page. Note
154 that a [prevented autofocus] still counts as having focused and used a text
155 input. This allows you to have your cake and eat it too: You can enable
156 autofocus prevention, and type `gi` when you wish you hadn’t.
157
158 `gi` takes a count. It then selects the `counth` text input on the page. Note
159 that `gi` and `1gi` are different: The latter _always_ focuses the first input
160 of the page, regradless of which input you used last.
161
162 After having focused a text input using `gi`, `<tab>` and `<s-tab>` will _only
163 cycle between text inputs,_ instead of moving the focus between _all_ focusable
164 elements as they usually do. (See also the [`focus_previous_key` and
165 `focus_next_key`] advanced options.)
166
167 [prevented autofocus]: options.md#prevent-autofocus
168 [`focus_previous_key` and `focus_next_key`]: options.md#focus_previous_key-and-focus_next_key
169
170
171 ## The `f` commands / Hints mode
172
173 When invoking one of the `f` commands you enter Hints mode. In Hints mode,
174 markers with hints are shown for some elements. By typing the letters of a hint
175 something is done to that element, depending on the command.
176
177 Another way to find links on the page is to use `g/`. It’s like the regular find
178 command (`/`), except that it searches links only.
179
180 Which elements get hints depends on the command as well:
181
182 - `f` and `af`: Anything clickable—links, buttons, form controls.
183 - `F`, `gf` and `gF`: Anything that can be opened in a new tab or window—links.
184 - `yf`: Anything that has something useful to copy—links (their URL) and text
185 inputs (their text).
186 - `zf`: Anything focusable—links, buttons, form controls, scrollable elements,
187 frames.
188 - `zF`: Browser elements, such as toolbar buttons.
189
190 It might seem simpler to match the same set of elements for _all_ of the
191 commands. The reason that is not the case is because the fewer elements the
192 shorter the hints. (Also, what should happen if you tried to `F` a button?)
193
194 (You can also customize [which elements do and don’t get hints][hint-matcher].)
195
196 Another way to make hints shorter is to assign the same hint to all links with
197 the same URL. So don’t get surprised if you see the same hint repeated several
198 times.
199
200 VimFx also tries to give you shorter hints for elements that you are more likely
201 to click. This is done by the surprisingly simple rule: The larger the element,
202 the shorter the hint.
203
204 There are standardized elements which are always clickable—_semantically_
205 clickable elements. Unfortunately, many sites use unclickable elements and then
206 make them clickable using JavaScript—<em>un</em>semantically clickable elements.
207 Such elements are difficult to find. VimFx has a few techniques for doing so,
208 which works many times but not always, but unfortunately they sometimes produce
209 false positives. Many times those false positives are pretty large elements,
210 which according to the last paragraph would give them really short hints, making
211 other more important elements suffer by getting longer ones. Therefore VimFx
212 favors semantic elements over unsemantic ones and takes that into account when
213 deciding the hint length for elements.
214
215 Some hint characters are easier to type than others. The ones on the home row
216 are of course the best. When customizing the [hint chars] option you should put
217 the best keys to the left and the worst ones to the right. VimFx favors keys to
218 the left, so that should give you the optimal hints.
219
220 Hints are added on top of the corresponding element. If they obscure the display
221 too much you can hold shift to make them transparent. (See [Styling] if you’d
222 like to change that.) The hints can also sometimes cover each other. Press
223 `<space>` and `<s-space>` to switch which one should be on top.
224
225 When giving a count to an `f` command, all markers will be re-shown after you’ve
226 typed the hint characters of one of them, _count_ minus one times. All but the
227 last time, the marker’s link will be opened in a new background tab. The last
228 time the command opens links as normal (in the current tab (`f`) or in a new
229 background (`F`) or foreground tab (`gf`)).
230
231 Note that the `f` command adds markers not only to links, but to buttons and
232 form controls as well. What happens the _count_ minus one times then? Buttons,
233 checkboxes and the like are simply clicked, allowing you to quickly check many
234 checkboxes in one go, for example. Text inputs cancel the command.
235
236 `af` works as if you’d supplied an infinite count to `f`. (In fact, the `af`
237 command is implemented by running the same function as for the `f` command,
238 passing `Infinity` as the `count` argument!) Therefore the `af` command does not
239 accept a count itself.
240
241 The `gF`, `zf`, `yf` and `zF` commands do not accept counts.
242
243 Press `<enter>` to increase the count by one. This is useful when you’ve already
244 entered Hints mode but realize that you want to interact with yet a marker. This
245 can be faster than going into Hints mode once more.
246
247 If you’ve pressed `f` but realize that you’d rather open a link in a new tab you
248 can hold ctrl while typing the last hint character. This is similar to how you
249 can press `<c-enter>` on a focused link to open it in a new tab (while just
250 `<enter>` would have opened it in the same tab). Hold alt to open in a new
251 foreground tab. In other words, holding ctrl works as if you’d pressed `F` from
252 the beginning, and holding alt works as if you’d pressed `gf`.
253
254 For the `F` and `gf` commands, holding ctrl makes them open links in the same
255 tab instead, as if you’d used the `f` command. Holding alt toggles whether to
256 open tabs in the background or foreground—it makes `F` work like `gf`, and `gf`
257 like `F`.
258
259 (Also see the advanced prefs [hints\_toggle\_in\_tab] and
260 [hints\_toggle\_in\_background].)
261
262 [hint-matcher]: api.md#vimfxhintmatcher
263 [hint chars]: options.md#hint-chars
264 [Styling]: styling.md
265 [hints\_toggle\_in\_tab]: options.md#hints_toggle_in_tab
266 [hints\_toggle\_in\_background]: options.md#hints_toggle_in_background
267
268
269 ## Ignore mode `<s-f1>`
270
271 Ignore mode is all about ignoring VimFx commands and sending the keys to the
272 page instead. Sometimes, though, you might want to run some VimFx command even
273 when in Insert mode.
274
275 One way of doing that is to press `<s-escape>` to exit Ignore mode, run your
276 command and then enter Ignore mode again using `i`. However, it might be
277 inconvenient having to remember to re-enter Ignore mode, and sometimes that’s
278 not even possible, such as if you ran the `K` command to get to the next tab.
279
280 Another way is to press `<s-f1>` followed by the Normal mode command you wanted
281 to run. (`<s-f1>` is essentially the inverse of the `I` command, which passes
282 the next keypress on to the page. Internally they’re called “quote” and
283 “unquote.”) This is handy if you’d like to switch away from a [blacklisted]
284 page: Just press for example `<s-f1>K`.
285
286 `<s-f1>` was chosen as the default shortcut because on a typical keyboard `<f1>`
287 is located just beside `<escape>`, which makes it very similar to `<s-escape>`,
288 which is used to exit Ignore mode. Both of those are uncommonly used by web
289 pages, so they shouldn’t be in the way. If you ever actually do need to send any
290 of those to the page, you can prefix them with `<s-f1>`, because if the key you
291 press after `<s-f1>` is not part of any Normal mode command, the key is sent to
292 the page. (Another way is for example `<s-f1>I<s-escape>`.)
293
294 [blacklisted]: options.md#blacklist
295
296
297 ## Ex commands
298
299 Vim has something called “ex” commands. Want something similar in VimFx? True to
300 its spirit, VimFx embraces a standard Firefox feature for this purpose: The
301 [Developer Toolbar]. That link also includes instructions on how to extend it
302 with your own commands.
303
304 In the future VimFx might even ship with a few extra “ex” commands by default.
305 We’re open for suggestions!
306
307 [Developer Toolbar]: https://developer.mozilla.org/en-US/docs/Tools/GCLI
Imprint / Impressum