11 lines
408 B
VimL
11 lines
408 B
VimL
|
" Visual bindings for merging diffs as in normal mode
|
||
|
xnoremap dp :diffput<cr>
|
||
|
xnoremap do :diffget<cr>
|
||
|
|
||
|
" Open status window
|
||
|
nnoremap <Leader>gs :Gstatus<CR>
|
||
|
" Open diff view of current buffer: the up/left window is the current index
|
||
|
nnoremap <Leader>gd :Gdiffsplit!<CR>
|
||
|
" Open current file log in new tab, populate its location list with history
|
||
|
nnoremap <Leader>gl :sp<CR><C-w>T:Gllog --follow -- %:p<CR>
|