fix :doautocmd usage

This commit is contained in:
haya14busa 2016-12-25 17:12:20 +09:00
parent 20e5b052c0
commit 0adc9b4668

View File

@ -135,7 +135,7 @@ function! s:move_to_winpos(winpos) abort
let is_win_moved = !(winnr is# winnr()) let is_win_moved = !(winnr is# winnr())
if is_win_moved if is_win_moved
if exists('#WinLeave') if exists('#WinLeave')
doautocmd WinLeave * doautocmd WinLeave
endif endif
call s:move_to_win(winnr) call s:move_to_win(winnr)
else else
@ -143,7 +143,7 @@ function! s:move_to_winpos(winpos) abort
endif endif
call cursor(pos) call cursor(pos)
if is_win_moved && exists('#WinEnter') if is_win_moved && exists('#WinEnter')
doautocmd WinEnter * doautocmd WinEnter
endif endif
endfunction endfunction