Skip to content

Commit

Permalink
bugfix for backing blending
Browse files Browse the repository at this point in the history
  • Loading branch information
jayli committed Dec 18, 2023
1 parent 0abed63 commit d68e3f3
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 @@ -648,7 +648,8 @@ function! s:BackingCompleteHandler()
let g:easycomplete_stunt_menuitems = s:GetCompleteCache(s:GetTypingWordByGtx())['menu_items']
let start_pos = col('.') - strlen(s:GetTypingWordByGtx())
let result = g:easycomplete_stunt_menuitems[0 : g:easycomplete_maxlength]
call s:complete(start_pos, result)
call s:StopAsyncRun()
call s:AsyncRun(function("s:complete"), [start_pos, result], 0)
endif
endif
endfunction
Expand Down

0 comments on commit d68e3f3

Please sign in to comment.