]> git.gir.st - VimFx.git/blob - documentation/commands.md
Add `ep` for opening links in new private windows
[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 recently visited tab.
56
57 ### `gL`
58
59 Selects the _count_ oldest unvisited tab.
60
61 Tip: It might help to make “unread” tabs visually different through custom
62 [styling]:
63
64 ```css
65 // Unread, unvisited tabs (opened in the background). These are the ones that
66 // can be selected using `gL`.
67 .tabbrowser-tab[unread]:not([VimFx-visited]):not(#override) {
68 font-style: italic !important;
69 }
70
71 // Unread but previously selected tabs (that have changed since last select).
72 .tabbrowser-tab[unread][VimFx-visited]:not(#override) {
73 font-weight: bold !important;
74 }
75 ```
76
77 [styling]: styling.md
78
79 ### `gJ`, `gK`
80
81 Moves the current tab _count_ tabs forward/backward.
82
83 As opposed to `J` and `K`, pinned and non-pinned tabs are handled separately.
84 The first non-pinned tab wraps to the last tab, and the last tab wraps to the
85 first non-pinned tab, and vice versa for non-pinned tabs. Use `gp` to move a tab
86 between the pinned and non-pinned parts of the tab bar.
87
88 Other than the above, the count and wrap semantics work like `J` and `K`.
89
90 ### `g0`, `g^`, `g$`
91
92 `g0` selects the tab at index _count,_ counting from the start.
93
94 `g^` selects the tab at index _count,_ counting from the first non-pinned tab.
95
96 `g$` selects the tab at index _count,_ counting from the end.
97
98 ### `x`
99
100 Closes the current tab and _count_ minus one of the following tabs.
101
102 ### `X`
103
104 Restores the _count_ last closed tabs.
105
106 ### `I`
107
108 Passes on the next _count_ keypresses to the page, without activating VimFx
109 commands.
110
111 ### The hint commands
112
113 Explained in the their own section below.
114
115 ### `gi`
116
117 Explained in its own section below.
118
119
120 ## Scrolling commands
121
122 Firefox lets you scroll with the arrow keys, page down, page up, home, end and
123 space by default. VimFx provides similar scrolling commands (and actually
124 overrides `<space>`), but they work a little bit differently.
125
126 They scroll _the currently focused element._ If the currently focused element
127 isn’t scrollable, the largest scrollable element on the page (if any, and
128 including the entire page itself) is scrolled.
129
130 You can focus scrollable elements using the `ef` command (or the `f` command).
131 Scrollable browser elements, such as in the dev tools, can be focused using the
132 `eb` command. The right border of hint markers for scrollable elements is styled
133 to remind of a scroll bar, making them easier to recognize among hints for
134 links.
135
136 Note that `ef` and `f` do _not_ add a hint marker for the _largest_ scrollable
137 element (such as the entire page). There’s no need to focus that element, since
138 it is scrolled by default if no other scrollable element is focused, as
139 explained above. (This prevents the largest scrollable element from likely
140 eating your best hint char on most pages; see [The hint commands]).
141
142 [The hint commands]: #the-hint-commands--hints-mode
143
144 ### Marks: `m` and `'`
145
146 Other than traditional scrolling, VimFx has _marks._ Press `m` followed by a
147 letter to associate the current scroll position with that letter. For example,
148 press `ma` to save the position into mark _a._ Then you can return to that
149 position by pressing `'` followed by the same letter, e.g. `'a`.
150
151 One mark is special: `'`. Pressing `''` takes you to the scroll position before
152 the last `gg`, `G`, `0`, `$`, `/`, `n`, `N` or `'`. (You can change this mark
153 using the [`scroll.last_position_mark`] pref.)
154
155 Note: Firefox has a `'` shortcut by default. It opens the Quick Find bar. VimFx
156 provides the `g/` shortcut instead.
157
158 [`scroll.last_position_mark`]: options.md#scroll.last_position_mark
159
160 #### Minor notes
161
162 Unlike Vim, you may press _any_ key after `m`, and the scroll position will be
163 associated with that key (Vim allows only a–z, roughly).
164
165 Unlike Vim and Vimium, VimFx has no global marks. The reason is that they would
166 be a lot more complicated to implement and do not seem useful enough to warrant
167 that effort.
168
169 As mentioned above, `m` stores the _current scroll position._ Specifically, that
170 means the scroll position of the element that would be scrolled if the active
171 element isn’t scrollable; see [Scrolling commands] above.
172
173 [Scrolling commands]: #scrolling-commands-1
174
175
176 ## `gi`
177
178 `gi` focuses the text input you last used, or the first one on the page. Note
179 that a [prevented autofocus] still counts as having focused and used a text
180 input. This allows you to have your cake and eat it too: You can enable
181 autofocus prevention, and type `gi` when you wish you hadn’t.
182
183 `gi` takes a count. It then selects the `counth` text input on the page. Note
184 that `gi` and `1gi` are different: The latter _always_ focuses the first input
185 of the page, regradless of which input you used last.
186
187 After having focused a text input using `gi`, `<tab>` and `<s-tab>` will _only
188 cycle between text inputs,_ instead of moving the focus between _all_ focusable
189 elements as they usually do. (See also the [`focus_previous_key` and
190 `focus_next_key`] advanced options.)
191
192 [prevented autofocus]: options.md#prevent-autofocus
193 [`focus_previous_key` and `focus_next_key`]: options.md#focus_previous_key-and-focus_next_key
194
195
196 ## The hint commands / Hints mode
197
198 When invoking one of the hint commands (such as `f`, `et` or one of the [`v`
199 commands]) you enter Hints mode. In Hints mode, markers with hints are shown for
200 some elements. By typing the letters of a hint something is done to that
201 element, depending on the command.
202
203 Another way to find links on the page is to use `g/`. It’s like the regular find
204 command (`/`), except that it searches links only.
205
206 Which elements get hints depends on the command as well:
207
208 - `f` and `af`: Anything clickable—links, buttons, form controls.
209 - `F`, `et`, `ew` and `ep`: Anything that can be opened in a new tab or
210 window—links.
211 - `yf`: Anything that has something useful to copy—links (their URL) and text
212 inputs (their text).
213 - `ef`: Anything focusable—links, buttons, form controls, scrollable elements,
214 frames.
215 - `eb`: Browser elements, such as toolbar buttons.
216
217 It might seem simpler to match the same set of elements for _all_ of the
218 commands. The reason that is not the case is because the fewer elements the
219 shorter the hints. (Also, what should happen if you tried to `F` a button?)
220
221 (You can also customize [which elements do and don’t get hints][hint-matcher].)
222
223 Another way to make hints shorter is to assign the same hint to all links with
224 the same URL. So don’t be surprised if you see the same hint repeated several
225 times.
226
227 VimFx also tries to give you shorter hints for elements that you are more likely
228 to click. This is done by the surprisingly simple rule: The larger the element,
229 the shorter the hint. To learn more about hint characters and hint length, read
230 about the [hint chars] option.
231
232 Hints are added on top of the corresponding element. If they obscure the display
233 too much you can hold shift to make them transparent, letting you peek through
234 them. (See [Styling] and the [hints\_peek\_through] pref if you’d like to change
235 that.) The hints can also sometimes cover each other. Press `<space>` and
236 `<s-space>` to switch which one should be on top.
237
238 When giving a count to a hint command, all markers will be re-shown after you’ve
239 typed the hint characters of one of them, _count_ minus one times. All but the
240 last time, the marker’s link will be opened in a new background tab. The last
241 time the command opens links as normal (in the current tab (`f`) or in a new
242 background (`F`) or foreground tab (`et`)).
243
244 Note that the hint command adds markers not only to links, but to buttons and
245 form controls as well. What happens the _count_ minus one times then? Buttons,
246 checkboxes and the like are simply clicked, allowing you to quickly check many
247 checkboxes in one go, for example. Text inputs cancel the command.
248
249 `af` works as if you’d supplied an infinite count to `f`. (In fact, the `af`
250 command is implemented by running the same function as for the `f` command,
251 passing `Infinity` as the `count` argument!) Therefore the `af` command does not
252 accept a count itself.
253
254 The `et`, `ef`, `yf` and `eb` commands do not accept counts.
255
256 Press `<enter>` to increase the count by one. This is useful when you’ve already
257 entered Hints mode but realize that you want to interact with yet a marker. This
258 can be faster than going into Hints mode once more.
259
260 If you’ve pressed `f` but realize that you’d rather open a link in a new tab you
261 can hold ctrl while typing the last hint character. This is similar to how you
262 can press `<c-enter>` on a focused link to open it in a new tab (while just
263 `<enter>` would have opened it in the same tab). Hold alt to open in a new
264 foreground tab. In other words, holding ctrl works as if you’d pressed `F` from
265 the beginning, and holding alt works as if you’d pressed `et`.
266
267 For the `F` and `et` commands, holding ctrl makes them open links in the same
268 tab instead, as if you’d used the `f` command. Holding alt toggles whether to
269 open tabs in the background or foreground—it makes `F` work like `et`, and `et`
270 like `F`.
271
272 (Also see the advanced prefs [hints\_toggle\_in\_tab] and
273 [hints\_toggle\_in\_background].)
274
275 Finally, if the element you wanted to interact with didn’t get a hint marker you
276 can try pressing `<c-enter>` while the hints are still shown. That will give
277 hint markers to all _other_ elements. Warning: This can be very slow, and result
278 in an overwhelming amount of hint markers (making it difficult to know which
279 hint to activate sometimes). See this as an escape hatch if you _really_ want to
280 avoid using the mouse at all costs. (Press `<c-enter>` again to toggle back to
281 the previous hints.)
282
283 ### Mnemonics and choice of default hint command shortcuts
284
285 The main command is `f`. It comes from the Vimium and Vimperator extensions. The
286 mnemonic is “<strong>f</strong>ollow link.” It is a good key, because on many
287 keyboard layouts it is located right under where your left index finger rests.
288
289 The most common variations of `f` are centered around that letter: `F`, `yf` and
290 `af`. (Some users might want to swap `F` and `et`, though.) In Vim, it is not
291 uncommon that an uppercase letter does the same thing as its lowercase
292 counterpart, but with some variation (in this case, `F` opens links in new tabs
293 instead of in the current tab), and `y` usually means “yank” or “copy.” VimFx
294 also has this pattern that `a` means “all.”
295
296 You can think of the above commands as the “f commands.” That sounds like
297 “eff-commands” when you say it out loud, which is a way of remembering that the
298 rest of the `f` variations are behind the `e` key. That’s also a pretty good
299 key/letter, because it is close to `f` both alphabetically, and physically in
300 many keyboard layouts (and is pretty easy to type).
301
302 The second key after `e` was chosen based on mnemonics: There’s `et` as in
303 <strong>t</strong>ab, `ew` as in <strong>w</strong>indow, `ep` as in
304 <strong>p</strong>rivate window, `ef` as in <strong>f</strong>ocus and `eb` as
305 in <strong>b</strong>rowser.
306
307 [`v` commands]: #the-v-commands--caret-mode
308 [hint-matcher]: api.md#vimfxsethintmatcherhintmatcher
309 [hint chars]: options.md#hint-chars
310 [Styling]: styling.md
311 [hints\_peek\_through]: options.md#hints_peek_through
312 [hints\_toggle\_in\_tab]: options.md#hints_toggle_in_tab
313 [hints\_toggle\_in\_background]: options.md#hints_toggle_in_background
314
315
316 ## The `v` commands / Caret mode
317
318 The point of Caret mode is to copy text from web pages using the keyboard.
319
320 ### Entering Caret mode
321
322 Pressing `v` will enter Hints mode with hint markers for all elements with text
323 inside. When activating a marker, its element will get a blinking caret at the
324 beginning of it, and Caret mode will be entered.
325
326 The `av` command does the same thing as `v`, but instead of placing the caret at
327 the beginning of the element, it selects the entire element (it selects
328 <strong>a</strong>ll of the element).
329
330 The `yv` command brings up the same hint markers as `av` does, and then takes
331 the text that `av` would have selected and copies it to the clipboard. It does
332 not enter Caret mode at all.
333
334 The letter `v` was chosen for these shortcuts because that’s what Vim uses to
335 enter its Visual mode, which was an inspiration for VimFx’s Caret mode.
336
337 ### Caret mode commands
338
339 Caret mode uses [Firefox’s own Caret mode] under the hood. This means that you
340 can use the arrows keys, `<home>`, `<end>`, `<pageup>` and `<pagedown>`
341 (optionally holding ctrl) to move the caret as usual. Hold shift while moving
342 the caret to select text.
343
344 In addition to the above, VimFx provides a few commands inspired by Vim.
345
346 - `h`, `j`, `k`, `l`: Move the caret left, down, up or right, like the arrow
347 keys.
348
349 - `b`, `w`: Move the caret one word backward or forward, like `<c-left>` and
350 `<c-right>` but a bit “Vim-adjusted” (see the section on Vim below) in order
351 to be more useful.
352
353 - `0` (or `^`), `$`: Move the caret to the start or end of the line.
354
355 The above commands (except the ones moving to the start or end of the line)
356 accept a _count._ For example, press `3w` to move three words forward.
357
358 Press `v` to start selecting text. After doing so, VimFx’s commands for moving
359 the caret select the text instead of just moving the caret. Press `v` again to
360 collapse the selection again. (Note that after pressing `v`, only VimFx’s
361 commands goes into “selection mode,” while Firefox’s work as usual, requiring
362 shift to be held to select text.)
363
364 `o` moves the caret to the “other end” of the selection. If the caret is at the
365 end of the selection, `o` will move it to the start (while keeping the selection
366 intact), and vice versa. This let’s you adjust the selection in both ends.
367
368 Finally, `y` is a possibly faster alternative to the good old `<c-c>`. Other
369 than copying the selection to the clipboard, it also exits Caret mode, saving
370 you yet a keystroke. (`<escape>` is unsurprisingly used to exit Caret mode
371 otherwise.)
372
373 [Firefox’s own Caret mode]: http://kb.mozillazine.org/Accessibility_features_of_Firefox#Allow_text_to_be_selected_with_the_keyboard
374
375 ### Workflow tips
376
377 If you’re lucky, the text you want to copy is located within a single element
378 that contains no other text, such as the text of a link or an inline code
379 snippet. If so, using the `yv` command (which copies an entire element without
380 entering Caret mode) is the fastest.
381
382 If you want to copy _almost_ all text of an element, or a bit more than it, use
383 the `av` command (which selects an entire element). Then adjust the selection
384 using the various Caret mode commands. Remember that `o` lets you adjust both
385 ends of the selection.
386
387 In all other cases, use the `v` command to place the caret close to the text you
388 want to copy. Then move the caret in place using the various Caret
389 mode commands, hit `v` to start selecting, and move the again.
390
391 Use `y` to finish (or `<escape>` to abort). Alternatively, use the `<menu>` key
392 to open the context menu for the selection.
393
394 ### For Vim users
395
396 As seen above, Caret mode is obviously inspired by Vim’s Visual mode. However,
397 keep in mind that the point of Caret mode is to **copy text using the keyboard,
398 not mimicing Vim’s visual mode.** I’ve found that selecting text for _copying_
399 is different than selecting code for _editing._ Keep that in mind.
400
401 Working with text selection in webpages using code is a terrible mess full of
402 hacks. New commands will only be added if they _really_ are worth it.
403
404 A note on VimFx’s `b` and `w`: They work like Vim’s `b` and `w` (but a “word” is
405 according to Firefox’s definition, not Vim’s), except when there is selected
406 text and the caret is at the end of the selection. Then `b` works like Vim’s
407 `ge` and `w` works like Vim’s `e`. The idea is to keep it simple and only
408 provide two commands that do what you want, rather than many just to mimic Vim.
409
410
411 ## Ignore mode `<s-f1>`
412
413 Ignore mode is all about ignoring VimFx commands and sending the keys to the
414 page instead. Sometimes, though, you might want to run some VimFx command even
415 when in Ignore mode.
416
417 One way of doing that is to press `<s-escape>` to exit Ignore mode, run your
418 command and then enter Ignore mode again using `i`. However, it might be
419 inconvenient having to remember to re-enter Ignore mode, and sometimes that’s
420 not even possible, such as if you ran the `K` command to get to the next tab.
421
422 Another way is to press `<s-f1>` followed by the Normal mode command you wanted
423 to run. (`<s-f1>` is essentially the inverse of the `I` command, which passes
424 the next keypress on to the page. Internally they’re called “quote” and
425 “unquote.”) This is handy if you’d like to switch away from a [blacklisted]
426 page: Just press for example `<s-f1>K`.
427
428 `<s-f1>` was chosen as the default shortcut because on a typical keyboard `<f1>`
429 is located just beside `<escape>`, which makes it very similar to `<s-escape>`,
430 which is used to exit Ignore mode. Both of those are uncommonly used by web
431 pages, so they shouldn’t be in the way. If you ever actually do need to send any
432 of those to the page, you can prefix them with `<s-f1>`, because if the key you
433 press after `<s-f1>` is not part of any Normal mode command, the key is sent to
434 the page. (Another way is for example `<s-f1>I<s-escape>`.)
435
436 [blacklisted]: options.md#blacklist
437
438
439 ## Ex commands
440
441 Vim has something called “ex” commands. Want something similar in VimFx? True to
442 its spirit, VimFx embraces a standard Firefox feature for this purpose: The
443 [Developer Toolbar]. That link also includes instructions on how to extend it
444 with your own commands.
445
446 In the future VimFx might even ship with a few extra “ex” commands by default.
447 We’re open for suggestions!
448
449 [Developer Toolbar]: https://developer.mozilla.org/en-US/docs/Tools/GCLI
Imprint / Impressum