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
In most JetBrains IDEs, when context-specific completions are added, no completions are added from other contributors, specifically the WordCompletionContributor which adds words found in the same document. Right now that's not happening for the LSPCompletionContributor, so you get completion lists like:
Instead LSPCompletionContributor should register itself before WordCompletionContributor and, if LSP-based competions were added, should stop collecting completions, e.g.:
If the user explicitly types the completion trigger more than once, though, additional completions can/should be added to the list:
The text was updated successfully, but these errors were encountered:
SCWells72
changed the title
Stop gather completions when completions are added from LSP
Stop gathering completions when completions are added from LSP
Nov 27, 2024
In most JetBrains IDEs, when context-specific completions are added, no completions are added from other contributors, specifically the
WordCompletionContributor
which adds words found in the same document. Right now that's not happening for theLSPCompletionContributor
, so you get completion lists like:Instead
LSPCompletionContributor
should register itself beforeWordCompletionContributor
and, if LSP-based competions were added, should stop collecting completions, e.g.:If the user explicitly types the completion trigger more than once, though, additional completions can/should be added to the list:
The text was updated successfully, but these errors were encountered: