Mercurial > vim-gutentags
diff 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 |
line wrap: on
line diff
--- a/plugin/gutentags.vim Fri Feb 25 22:12:42 2022 +0800 +++ b/plugin/gutentags.vim Thu May 12 09:20:21 2022 -0700 @@ -98,6 +98,7 @@ autocmd BufNewFile,BufReadPost * call gutentags#setup_gutentags() autocmd VimEnter * if expand('<amatch>')==''|call gutentags#setup_gutentags()|endif autocmd VimLeavePre * call gutentags#on_vim_leave_pre() + autocmd VimLeave * call gutentags#on_vim_leave() augroup end " }}}