comparison plugin/gutentags.vim @ 267:6030953258fe

On Windows, kill ongoing jobs before leaving so we can clean-up temp files
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 12 May 2022 09:20:21 -0700
parents 52be4cf89810
children edd757c1e28d
comparison
equal deleted inserted replaced
266:1b74fb3819e1 267:6030953258fe
96 augroup gutentags_detect 96 augroup gutentags_detect
97 autocmd! 97 autocmd!
98 autocmd BufNewFile,BufReadPost * call gutentags#setup_gutentags() 98 autocmd BufNewFile,BufReadPost * call gutentags#setup_gutentags()
99 autocmd VimEnter * if expand('<amatch>')==''|call gutentags#setup_gutentags()|endif 99 autocmd VimEnter * if expand('<amatch>')==''|call gutentags#setup_gutentags()|endif
100 autocmd VimLeavePre * call gutentags#on_vim_leave_pre() 100 autocmd VimLeavePre * call gutentags#on_vim_leave_pre()
101 autocmd VimLeave * call gutentags#on_vim_leave()
101 augroup end 102 augroup end
102 103
103 " }}} 104 " }}}
104 105
105 " Toggles and Miscellaneous Commands {{{ 106 " Toggles and Miscellaneous Commands {{{