diff options
| author | Robert Günzler <r@gnzler.io> | 2021-02-20 21:27:26 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-04-26 02:09:43 +0200 |
| commit | 1996ef15613f2d4773017128bba1a719a1b63a19 (patch) | |
| tree | aa291b56947f0f710c96c62758990de3b2939bba /.vim/after/ftplugin/gitrebase.vim | |
| parent | 30451238df36d238fea816f01ca987853c6562a5 (diff) | |
Move to lua based vimrc
Diffstat (limited to '.vim/after/ftplugin/gitrebase.vim')
| -rw-r--r-- | .vim/after/ftplugin/gitrebase.vim | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/.vim/after/ftplugin/gitrebase.vim b/.vim/after/ftplugin/gitrebase.vim deleted file mode 100644 index e97d225..0000000 --- a/.vim/after/ftplugin/gitrebase.vim +++ /dev/null @@ -1,8 +0,0 @@ -set keywordprg=:GitShow -command! -nargs=1 -bar GitShow call s:git_show(<f-args>) - -function! s:git_show(commit) abort - let p = popup#new({ 'filetype': 'diff' }) - let p.contents = systemlist("git show ".a:commit) - call p.open() -endfunction |