From 4bf3c29e5eadda1e462b4cdb429cadb579924cde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20Beno=C3=AEt?= Date: Fri, 4 Dec 2020 23:44:18 +0100 Subject: [PATCH] Fugitive - Don't use deprecated commands --- bundles-init/vim-fugitive.cfg.vim | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bundles-init/vim-fugitive.cfg.vim b/bundles-init/vim-fugitive.cfg.vim index a90a677..78fd9fd 100644 --- a/bundles-init/vim-fugitive.cfg.vim +++ b/bundles-init/vim-fugitive.cfg.vim @@ -1,14 +1,14 @@ " Fugitive commands that don't require interaction with GitGutter or NERDTree nnoremap ga :Git add %:p -nnoremap gd :Gdiff -nnoremap gs :Gstatus -nnoremap gc :Gcommit -q +nnoremap gd :Gdiffsplit +nnoremap gs :Git +nnoremap gc :Git commit -q nnoremap gb :Git branch " Note: dangerous commands don't have a nnoremap gB :Git checkout -b nnoremap gC :Git checkout -nnoremap gM :Gmove +nnoremap gM :GMove nnoremap gp :Git pull --recurse-submodules nnoremap gP :Git push -nnoremap gR :Gremove +nnoremap gR :GRemove