Skip to content

Instantly share code, notes, and snippets.

@swirhen
Created October 5, 2012 00:42
Show Gist options
  • Save swirhen/3837376 to your computer and use it in GitHub Desktop.
Save swirhen/3837376 to your computer and use it in GitHub Desktop.
vichrome keymap
### Sample Settings
# aliases
# in this example you can open extensions page by the command ':ext'
# and Chrome's option page by the command ':option'
alias ext TabOpenNew chrome://extensions/
alias option TabOpenNew chrome://settings/browser
alias downloads TabOpenNew chrome://downloads
alias history TabOpenNew chrome://history
# mappings for opening your favorite web page
#nmap <Space>tw :TabOpenNew http://www.twitter.com
#nmap <Space>gr :TabOpenNew http://www.google.com/reader
nmap <Space>m :TabOpenNew https://mail.google.com/mail/#inbox
# F for continuous f-Mode
# this is recomended setting but commented out by default.
# if you want to use this setting, use the following
nmap F :GoFMode --newtab --continuous
nmap t :OpenNewTab -i
nmap T :OpenNewTab -i g
nmap <C-j> :TabFocusNext
nmap <C-k> :TabFocusPrev
nmap d :TabCloseCurrent
nmap D :TabCloseCurrent --focusprev
nmap <Right> :TabFocusNext
nmap <Left> :TabFocusPrev
nmap L :TabFocusNext
nmap H :TabFocusPrev
#nmap h :BackHist
#nmap l :ForwardHist
nmap y :copyurl
# you can use <DISCARD> to discard the key so that chrome's default
# action isn't triggered.
#nmap <BS> <DISCARD>
# if you want to change the key used to escape EmergencyMode mode,
# use emap like the following
#emap <ESC> :Escape
## pagecmd offers you page specific key mapping.
# in this example you can use <C-l>, <C-h> for moving between tabs
# on all web pages regardless of your ignored list setting
# because pagecmd has higher priority than ignored URLs.
# almost all Vichrome functions don't work properly for pdf contents
# so it's useful to enable default key bindings for pdf file.
pagecmd *.pdf nmap <C-f> <NOP>
# if you want to use twitter web's key binding, write settings like below
#pagecmd http*://twitter.com/* nmap f <NOP>
#pagecmd http*://twitter.com/* nmap r <NOP>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment