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