From 4bc376433b5c4602795accf53870b0d612773167 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Mon, 2 Nov 2020 13:58:16 +0530 Subject: [PATCH] nvim: Drop gitjump We can move between conflict markers using functionality from the conflict markers plugin and we also have gina. If required just introduce the command mapping later. --- nvim/.config/nvim/plugin/gitjump.vim | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 nvim/.config/nvim/plugin/gitjump.vim diff --git a/nvim/.config/nvim/plugin/gitjump.vim b/nvim/.config/nvim/plugin/gitjump.vim deleted file mode 100644 index 47e02e5..0000000 --- a/nvim/.config/nvim/plugin/gitjump.vim +++ /dev/null @@ -1,9 +0,0 @@ -" Taken from https://gist.github.com/romainl/a3ddb1d08764b93183260f8cdf0f524f -" The original script can be found at https://github.com/git/git/tree/master/contrib/git-jump -nnoremap jd :GitJump diff -nnoremap jm :GitJump merge -nnoremap jg :GitJump grep -nnoremap jc :exe ':GitJump grep ' . expand('') -nnoremap jw :GitJump ws - -command! -bar -nargs=* GitJump cexpr system('git jump ' . expand())