Skip to content

Instantly share code, notes, and snippets.

@dcrystalj
Created August 13, 2014 22:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcrystalj/37967972a95b8ff2bd60 to your computer and use it in GitHub Desktop.
Save dcrystalj/37967972a95b8ff2bd60 to your computer and use it in GitHub Desktop.
vichrome
### 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>fb :TabOpenNew http://www.facebook.com
nmap <Space>m :TabOpenNew https://dub117.mail.live.com
# 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
# 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.
pagecmd * nmap K :TabFocusNext
pagecmd * nmap J :TabFocusPrev
pagecmd * nmap L :ForwardHist
pagecmd * nmap H :BackHist
pagecmd * nmap d : PageDown
pagecmd * nmap u : PageUp
pagecmd * nmap <C-l> <NOP>
# 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