.config/nvim/plugin/tig.vim

Wed, 08 Mar 2023 23:06:39 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 08 Mar 2023 23:06:39 -0600
changeset 1070
72b613de1102
parent 1025
9dfc1a5a52dc
permissions
-rw-r--r--

disable lsp preselect

func! tig#Tig(...) abort
  enew
  setl nonumber
  call termopen(["tig"] + a:000, {'on_exit': 'tig#TigExit'})
endfunc

func! tig#TigBlame() abort
  call tig#Tig('blame', '+' . line('.'), '--', expand('%'))
endfunc

func! tig#TigExit(...) abort
  buffer #
endfunc

command! -nargs=* -complete=file Tig      call tig#Tig(<f-args>)
command!                         TigBlame call tig#TigBlame()
command!                         TigLog   call tig#Tig('log', '-p', '--', expand('%'))

mercurial