You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #28 introduced the option g:lsp_async_completion, which allows to run lsp#omni#complete in sync-mode, ie. have the function wait for the results and return them, instead of returning v:none and adding the results later.
This allowed the omnifunc-implementation to be used in chaining completion-managers such as mucomplete, which rely on the (existence of) results to decide if the next completion should be called.
PR #391 changed this, returning v:none in either case, and thus breaking plugins which rely on the omnifunc actually returning any results.
The text was updated successfully, but these errors were encountered:
PR #28 introduced the option
g:lsp_async_completion
, which allows to runlsp#omni#complete
in sync-mode, ie. have the function wait for the results and return them, instead of returningv:none
and adding the results later.This allowed the omnifunc-implementation to be used in chaining completion-managers such as mucomplete, which rely on the (existence of) results to decide if the next completion should be called.
PR #391 changed this, returning
v:none
in either case, and thus breaking plugins which rely on the omnifunc actually returning any results.The text was updated successfully, but these errors were encountered: