aboutsummaryrefslogtreecommitdiffstats
path: root/README.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown49
1 files changed, 31 insertions, 18 deletions
diff --git a/README.markdown b/README.markdown
index 3a9352ca..9b122f56 100644
--- a/README.markdown
+++ b/README.markdown
@@ -20,8 +20,8 @@ The Settings page can be found by clicking the Options button next to Vimium on
Keyboard Bindings
-----------------
-Modifier keys are specified as follows: <c-x>, <m-x>, <a-x> for ctrl+x, meta+x, and alt+x
-respectively.
+Modifier keys are specified as <c-x>, <m-x>, <a-x> for ctrl+x, meta+x, and alt+x
+respectively. You can change any of these shortcuts under "Advanced Options".
Navigating the current page:
h scroll left
@@ -34,23 +34,20 @@ Navigating the current page:
<c-u>, <c-y> scroll up a page
<c-f> scroll down a full page
<c-b> scroll up a full page
- zH scroll all the way left
- zL scroll all the way right
- f activate link hints mode to open in current tab
- F activate link hints mode to open in new tab
- <a-f> activate link hints mode to open multiple links in a new tab
+ f open a link in the current tab
+ F open a link in a new tab
r reload
gs view source
zi zoom in
zo zoom out
- / enter find mode -- type your search query and hit enter to search or esc to cancel
- n cycle forward to the next find match
- N cycle backward to the previous find match
i enter insert mode -- all commands will be ignored until you hit esc to exit
yy copy the current url to the clipboard
- gu go up one level in the URL hierarchy
gf cycle forward to the next frame
- gi focus the first (or n-th) text input box on the page
+
+Using find:
+ / enter find mode -- type your search query and hit enter to search or esc to cancel
+ n cycle forward to the next find match
+ N cycle backward to the previous find match
Navigating your history:
H go back in history
@@ -63,24 +60,37 @@ Manipulating tabs:
d close current tab
u restore closed tab (i.e. unwind the 'd' command)
+Additional advanced browsing commands:
+ ]] Follow the link labeled 'next' or '>'. Helpful for browsing paginated sites.
+ [[ Follow the link labeled 'previous' or '<'. Helpful for browsing paginated sites.
+ <a-f> open multiple links in a new tab
+ gi focus the first (or n-th) text input box on the page
+ gu go up one level in the URL hierarchy
+ zH scroll all the way left
+ zL scroll all the way right
+ z0 reset zoom to default value
+
+
Vimium supports command repetition so, for example, hitting '5t' will open 5 tabs in rapid succession. ESC (or
<c-[>) will clear any partial commands in the queue.
-Keys can be unmapped and remapped to different commands under Advanced Options.
Contributing
------------
-You'd like to fix a bug or implement a feature? Great! Check out the bugs on our issues tracker, or implement one of
-the suggestions there that have been tagged 'todo'. If you have a suggestion of your own, start a discussion on
-the issues tracker or on the [mailing list][list_url]. If it mirrors a similar feature in another browser or in Vim
-itself, let us know! Once you've picked something to work on, add a comment to the respective issue so others don't
-duplicate your effort.
+You'd like to fix a bug or implement a feature? Great! Check out the bugs on our issues tracker, or implement
+one of the suggestions there that have been tagged 'todo'. If you have a suggestion of your own, start a
+discussion on the issues tracker or on the [mailing list][list_url]. If it mirrors a similar feature in
+another browser or in Vim itself, let us know! Once you've picked something to work on, add a comment to the
+respective issue so others don't duplicate your effort.
When you're done, send us a pull request on Github. Feel free to include a change to the CREDITS file with your patch.
[list_url]: http://groups.google.com/group/vimium-dev?hl=en
+Some brief coding style guidelines: 1) follow the style already present in the file, 2) ensure your lines
+don't exceed 110 characters.
+
Release Notes
-------------
@@ -88,6 +98,9 @@ Release Notes
- Some sites are now excluded by default.
- View source (`gs`) now opens in a new tab.
+- Support for browsing paginated sites using `]]` and `[[` to go forward and backward respectively.
+- `z0` will reset the zoom level for the current page.
+- 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.
- Bugfixes.
1.21 (10/24/2010)