Last active
August 29, 2015 14:11
-
-
Save greenmang0/deaf43daa14b16ed2df6 to your computer and use it in GitHub Desktop.
cvim
This file contains 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
set noinsertmappings | |
set typelinkhints | |
map <C-n> nextTab | |
map <C-p> previousTab | |
map d closeTab | |
map u lastClosedTab | |
map <C-f> scrollFullPageDown | |
map <C-b> scrollFullPageUp | |
map <C-d> scrollPageDown | |
map <C-u> scrollPageUp | |
map <C-o> goBack | |
map <C-i> goForward | |
map b :buffer<Space> | |
map B :bookmarks<Space> | |
" Not working because ":" gets missing from the opened URL | |
let @@cvimrc = 'chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/pages/options.html' | |
map cvrc :tabnew @@cvimrc<CR> | |
let @@cvimrc_gist = 'https://gist.github.com/praddy/33fabf1e8c42d5c00ea1/edit' | |
map cvrg :tabnew @@cvimrc_gist<CR> | |
let blacklists = ["https://mail.google.com/*"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment