Skip to content

Instantly share code, notes, and snippets.

@vexus2
Created January 5, 2013 06:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vexus2/4460192 to your computer and use it in GitHub Desktop.
Save vexus2/4460192 to your computer and use it in GitHub Desktop.
### 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 <Space>gr :TabOpenNew http://www.google.com/reader
nmap <Space>m :TabOpenNew https://mail.google.com/mail/#inbox
nmap <Space>gc :TabOpenNew https://www.google.com/calendar/
nmap <Space>fb :TabOpenNew https://www.facebook.com/
nmap <C-l> <NOP>
nmap <C-h> <NOP>
nmap gt :TabFocusNext
nmap gT :TabFocusPrev
nmap Y :Copy '<a href="%url">%title</a>'
nmap l :TabFocusNext
nmap h :TabFocusPrev
# 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 <C-l> :TabFocusNext
pagecmd * nmap <C-h> :TabFocusPrev
# 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