Skip to content

Commit e7706ab

Browse files
committed
Move the advanced commands in the readme into a separate section
1 parent 83fee9f commit e7706ab

File tree

2 files changed

+20
-15
lines changed

2 files changed

+20
-15
lines changed

README.markdown

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Keyboard Bindings
2121
-----------------
2222

2323
Modifier keys are specified as follows: <c-x>, <m-x>, <a-x> for ctrl+x, meta+x, and alt+x
24-
respectively.
24+
respectively. You can change any of these shortcuts under "Advanced Options".
2525

2626
Navigating the current page:
2727
h scroll left
@@ -34,26 +34,20 @@ Navigating the current page:
3434
<c-u>, <c-y> scroll up a page
3535
<c-f> scroll down a full page
3636
<c-b> scroll up a full page
37-
zH scroll all the way left
38-
zL scroll all the way right
3937
f open a link in the current tab
4038
F open a link in a new tab
41-
<a-f> open multiple links in a new tab
4239
r reload
4340
gs view source
4441
zi zoom in
4542
zo zoom out
46-
z0 reset zoom to default value
47-
/ enter find mode -- type your search query and hit enter to search or esc to cancel
48-
n cycle forward to the next find match
49-
N cycle backward to the previous find match
5043
i enter insert mode -- all commands will be ignored until you hit esc to exit
5144
yy copy the current url to the clipboard
52-
gu go up one level in the URL hierarchy
5345
gf cycle forward to the next frame
54-
gi focus the first (or n-th) text input box on the page
55-
]] Follow the link labeled 'next' or '>'. Helpful for browsing paginated sites.
56-
[[ Follow the link labeled 'previous' or '<'. Helpful for browsing paginated sites.
46+
47+
Using find:
48+
/ enter find mode -- type your search query and hit enter to search or esc to cancel
49+
n cycle forward to the next find match
50+
N cycle backward to the previous find match
5751

5852
Navigating your history:
5953
H go back in history
@@ -66,10 +60,20 @@ Manipulating tabs:
6660
d close current tab
6761
u restore closed tab (i.e. unwind the 'd' command)
6862

63+
Additional advanced browsing commands:
64+
]] Follow the link labeled 'next' or '>'. Helpful for browsing paginated sites.
65+
[[ Follow the link labeled 'previous' or '<'. Helpful for browsing paginated sites.
66+
<a-f> open multiple links in a new tab
67+
gi focus the first (or n-th) text input box on the page
68+
gu go up one level in the URL hierarchy
69+
zH scroll all the way left
70+
zL scroll all the way right
71+
z0 reset zoom to default value
72+
73+
6974
Vimium supports command repetition so, for example, hitting '5t' will open 5 tabs in rapid succession. ESC (or
7075
<c-[>) will clear any partial commands in the queue.
7176

72-
Keys can be unmapped and remapped to different commands under Advanced Options.
7377

7478
Contributing
7579
------------
@@ -96,6 +100,7 @@ Release Notes
96100
- View source (`gs`) now opens in a new tab.
97101
- Support for browsing paginated sites using `]]` and `[[` to go forward and backward respectively.
98102
- `z0` will reset the zoom level for the current page.
103+
- Many of the less-used commands are now marked as "advanced" and hidden in the help dialog by default, so that the core command set is more focused and approachable.
99104
- Bugfixes.
100105

101106
1.21 (10/24/2010)

commands.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,9 @@ var commandDescriptions = {
157157
scrollRight: ["Scroll right"],
158158
scrollToTop: ["Scroll to the top of the page"],
159159
scrollToBottom: ["Scroll to the bottom of the page"],
160-
scrollToLeft: ["Scroll to the left of the page"],
160+
scrollToLeft: ["Scroll all the way to the left"],
161161

162-
scrollToRight: ["Scroll to the right of the page"],
162+
scrollToRight: ["Scroll all the way to the right"],
163163
scrollPageDown: ["Scroll a page down"],
164164
scrollPageUp: ["Scroll a page up"],
165165
scrollFullPageDown: ["Scroll a full page down"],

0 commit comments

Comments
 (0)