Skip to content

Commit

Permalink
bugfix for speed up
Browse files Browse the repository at this point in the history
  • Loading branch information
jayli committed Dec 18, 2023
1 parent a4d9fa0 commit f4ffdcd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion autoload/easycomplete.vim
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,8 @@ function! s:SecondCompleteRendering(start_pos, result)
if g:env_is_iterm
call s:StopAsyncRun()
if len(g:easycomplete_stunt_menuitems) < 40
call s:AsyncRun(function('s:complete'), [a:start_pos, a:result], 5)
call s:AsyncRun(function('easycomplete#_complete'), [a:start_pos, a:result], 5)
" call s:AsyncRun(function('s:complete'), [a:start_pos, a:result], 5)
else
call s:AsyncRun(function('easycomplete#_complete'), [a:start_pos, a:result], 5)
endif
Expand Down

0 comments on commit f4ffdcd

Please sign in to comment.