Created
January 16, 2014 22:02
-
-
Save garmjs/8464329 to your computer and use it in GitHub Desktop.
Vimium Chrome remap keys
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| map b goBack | |
| map w goForward | |
| map s toggleViewSource | |
| map gR goToRoot | |
| Navigating the page | |
| j, <c-e> : Scroll down (scrollDown) | |
| k, <c-y> : Scroll up (scrollUp) | |
| h : Scroll left (scrollLeft) | |
| l : Scroll right (scrollRight) | |
| gg : Scroll to the top of the page (scrollToTop) | |
| G : Scroll to the bottom of the page (scrollToBottom) | |
| d : Scroll a page down (scrollPageDown) | |
| u : Scroll a page up (scrollPageUp) | |
| : Scroll a full page up (scrollFullPageUp) | |
| : Scroll a full page down (scrollFullPageDown) | |
| r : Reload the page (reload) | |
| gs, s : View page source (toggleViewSource) | |
| yy : Copy the current URL to the clipboard (copyCurrentUrl) | |
| yf : Copy a link URL to the clipboard (LinkHints.activateModeToCopyLinkUrl) | |
| p : Open the clipboard's URL in the current tab (openCopiedUrlInCurrentTab) | |
| P : Open the clipboard's URL in a new tab (openCopiedUrlInNewTab) | |
| i : Enter insert mode (enterInsertMode) | |
| f : Open a link in the current tab (LinkHints.activateMode) | |
| F : Open a link in a new tab (LinkHints.activateModeToOpenInNewTab) | |
| o : Open URL, bookmark, or history entry (Vomnibar.activate) | |
| O : Open URL, bookmark, history entry, in a new tab (Vomnibar.activateInNewTab) | |
| T : Search through your open tabs (Vomnibar.activateTabSelection) | |
| : Open a bookmark (Vomnibar.activateBookmarks) | |
| B : Open a bookmark in a new tab (Vomnibar.activateBookmarksInNewTab) | |
| gf : Cycle forward to the next frame on the page (nextFrame) | |
| Using find | |
| / : Enter find mode (enterFindMode) | |
| n : Cycle forward to the next find match (performFind) | |
| N : Cycle backward to the previous find match (performBackwardsFind) | |
| Navigating history | |
| H, b : Go back in history (goBack) | |
| L, w : Go forward in history (goForward) | |
| Manipulating tabs | |
| K, gt : Go one tab right (nextTab) | |
| J, gT : Go one tab left (previousTab) | |
| g0 : Go to the first tab (firstTab) | |
| g$ : Go to the last tab (lastTab) | |
| t : Create new tab (createTab) | |
| yt : Duplicate current tab (duplicateTab) | |
| x : Close current tab (removeTab) | |
| X : Restore closed tab (restoreTab) | |
| Miscellaneous | |
| ? : Show help (showHelp) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment