Improve fugitive shortcuts

This commit is contained in:
ViViDboarder 2014-03-04 10:55:00 -08:00
parent 0aff4de7cb
commit 10f831ff49
1 changed files with 4 additions and 2 deletions

View File

@ -361,9 +361,11 @@ endif
" fugitive
" Add some shortcuts for git commands
nnoremap <leader>gs :Gstatus<CR>
nnoremap <leader>gc :Gcommit<CR>
nnoremap <leader>gb :Gblame<CR>
nnoremap <leader>gc :Gcommit<CR>
nnoremap <leader>gd :Gdiff<CR>
nnoremap <leader>gs :Gstatus<CR>
nnoremap <leader>gw :Gwrite<CR>
" Toggle QuickFix window
nnoremap <silent> <F6> :QFix<CR>