diff --git a/plugin/srcexpl.vim b/plugin/srcexpl.vim index e86fe61..f7573c6 100644 --- a/plugin/srcexpl.vim +++ b/plugin/srcexpl.vim @@ -1495,8 +1495,12 @@ function! SrcExpl_Init() " Then we set the routine function when the event happens augroup SrcExpl_AutoCmd autocmd! - au! CursorHold * nested call g:SrcExpl_Refresh() - au! WinEnter * nested call SrcExpl_WinEnter() + + " Remove below line emptly + "au! CursorHold * nested call g:SrcExpl_Refresh() + "au! WinEnter * nested call SrcExpl_WinEnter() + au! CursorHold * call g:SrcExpl_Refresh() + au! WinEnter * call SrcExpl_WinEnter() augroup end return 0