vim-fugitive mappings

This commit is contained in:
ManjaroOne666 2018-03-28 21:03:57 +01:00
parent 240906738f
commit d13a82f87d
1 changed files with 3 additions and 2 deletions

View File

@ -17,8 +17,9 @@ nnoremap <silent> A :call CheckLineEnding()<CR>
nnoremap <space>co :!clear;
nnoremap <space>gs :!clear; echo 'git status'; git status<CR>
nnoremap <space>gd :!clear; echo 'git diff'; git diff<CR>
nnoremap <space>gs :Gstatus<CR>
nnoremap <space>gd :Gdiff<CR>
nnoremap <space>gD :!clear; echo 'git diff'; git diff<CR>
nnoremap <space>ga :!clear; git add %; git status<CR>
nnoremap <space>gA :!clear; git add .; git status<CR>
nnoremap <space>gc :!clear; git commit -m ''<Left>