aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorilya2009-12-13 20:15:05 -0800
committerilya2009-12-13 20:15:05 -0800
commit1f6f81d0f8b3f185fdb32a85861b2ebe827d51ca (patch)
tree28e7f6936730ccb49de1456729a6ca4923168320
parentcc8131d20ee7ff260b2e68dea367dbe7caa5ab93 (diff)
downloadvimium-1f6f81d0f8b3f185fdb32a85861b2ebe827d51ca.tar.bz2
Expanded the README a bit with keyboard bindings and other information.
-rw-r--r--README41
1 files changed, 41 insertions, 0 deletions
diff --git a/README b/README
index ae116dfe..d65a312e 100644
--- a/README
+++ b/README
@@ -8,3 +8,44 @@ Installation Instructions:
1. Navigate to chrome://extensions
2. Click on "Load Extension..."
3. Select the vimium directory.
+
+The settings page can be found by clicking the Options button next to Vimium on chrome://extensions.
+
+=================
+Keyboard Bindings
+=================
+
+<c-x> is to be interpreted as ctrl + x together.
+
+Navigating the current page:
+ h scroll left
+ j scroll down
+ k scroll up
+ l scroll right
+ gg scroll to top of the page
+ G scroll to bottom of the page
+ <c-d> scroll down a page
+ <c-u> scroll up a page
+ f activate link hints mode to open in current page
+ F activate link hints mode to open in new tab
+ r reload
+ gf 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
+
+Navigating your history:
+ ba, H go back in history
+ fw, fo, L go forward in history
+
+Manipulating tabs:
+ J next tab
+ K previous tab
+ t create tab
+ d close current tab
+ u restore closed tab (i.e. unwind the 'd' command)
+
+Vimium supports command repetition so, for example, hitting '5t' will open 5 tabs in rapid succession.