Fix minor bug in latexmk.vim

This commit is contained in:
Karl Yngve Lervåg 2016-01-14 14:58:18 +01:00
parent 55979afc7d
commit 38aaf18dc5

View File

@ -36,7 +36,7 @@ function! vimtex#latexmk#init_script() " {{{1
augroup vimtex_latexmk augroup vimtex_latexmk
autocmd! autocmd!
autocmd VimLeave * call vimtex#latexmk#stop_all() autocmd VimLeave * call vimtex#latexmk#stop_all()
autocmd User VimtexQuit call s:stop_before_leaving() autocmd User VimtexEventQuit call s:stop_before_leaving()
augroup END augroup END
endif endif
@ -467,7 +467,7 @@ function! s:latexmk_init_pid() " {{{1
" "
" If the PID is 0, then search for existing processes " If the PID is 0, then search for existing processes
" "
if b:vimtex.pid ==# 0 if b:vimtex.pid == 0
if has('win32') if has('win32')
" "
" PASS - don't know how to do this on Windows yet. " PASS - don't know how to do this on Windows yet.