]> git.mdlowis.com Git - archive/vim_config.git/commitdiff
Updated buffer switching shortcuts
authorMichael D. Lowis <mike@mdlowis.com>
Sun, 2 Nov 2014 14:27:07 +0000 (09:27 -0500)
committerMichael D. Lowis <mike@mdlowis.com>
Sun, 2 Nov 2014 14:27:07 +0000 (09:27 -0500)
projects/gentex.vim
vimrc

index 8fcb8ef421f8aa79dde4701ea8e462bad4feddd8..a68e1cfe2a6055d5579940698dfd3663ab663530 100644 (file)
@@ -31,6 +31,7 @@ function! RefreshCScope()
         call ConnectCScope()
         execute('cd ' . g:ProjectPath)
     endif
+    redraw!
 endfunction
 
 " Update the CTags File
@@ -40,6 +41,7 @@ function! RefreshCTags()
         execute('silent ! ctags -R *')
         execute('cd ' . g:ProjectPath)
     endif
+    redraw!
 endfunction
 
 " Execute Rake with the given targets and open the quickfix window
diff --git a/vimrc b/vimrc
index a564965a19faceb36228b20c5c21b49c871a9ba4..47d7c3da31fc7ddfc12d672e28d69649a44f54b5 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -193,10 +193,10 @@ inoremap <C-Space> <C-n>
 map <Leader>t :call Template(getline("."))<CR>jdd
 
 " ---- Buffer Management ----
-map  <C-S-tab>  :bp<CR>
-imap <C-S-tab>  <ESC>:bp<CR>
-map  <C-tab>    :bn<CR>
-imap <C-tab>    <ESC>:bn<CR>
+map  <C-h>  :bp<CR>
+imap <C-h>  <ESC>:bp<CR>
+map  <C-l>  :bn<CR>
+imap <C-l>  <ESC>:bn<CR>
 
 " ---- Moving Lines Around ----
 nmap <C-j> ddp