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
Describe the bug
Due to IntelliJ's rules for determining a completionlist prefix, sometimes it doesn't show the Contextive complteion list as it determines the prefix doesn't match. e.g. in a yml file like:
key: value s
If the cursor is after the s, then Contextive would return a list and expect it to be filtered by the prefix s but intellij would attempt to filter with the value value s as it considers everything after the : to be prefix.
Expected behavior
It should show the completion list even at the position s
Additional context
From discussion with JetBrains support, they recommend using the textEdit field, not the insertText field in the completion item, as this is more explicit and would avoid client-side interpretation.
The text was updated successfully, but these errors were encountered:
Describe the bug
Due to IntelliJ's rules for determining a completionlist prefix, sometimes it doesn't show the Contextive complteion list as it determines the prefix doesn't match. e.g. in a yml file like:
If the cursor is after the
s
, then Contextive would return a list and expect it to be filtered by the prefixs
but intellij would attempt to filter with the valuevalue s
as it considers everything after the:
to be prefix.Expected behavior
It should show the completion list even at the position
s
Additional context
From discussion with JetBrains support, they recommend using the textEdit field, not the
insertText
field in the completion item, as this is more explicit and would avoid client-side interpretation.The text was updated successfully, but these errors were encountered: