Skip to content

Commit

Permalink
GH-1342: mark property completion list as incomplete to re-trigger co…
Browse files Browse the repository at this point in the history
…mpletion processing
  • Loading branch information
martinlippert committed Sep 25, 2024
1 parent 6113593 commit dc9b408
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public InternalCompletionList getCompletions(TextDocument doc, int offset) throw
Collection<ICompletionProposal> completionItems = new PropertiesCompletionProposalsCalculator(indexProvider.getIndex(doc).getProperties(),
typeUtilProvider.getTypeUtil(sourceLinks, doc), completionFactory, doc, offset, preferLowerCaseEnums).calculate();

return new InternalCompletionList(completionItems, false);
return new InternalCompletionList(completionItems, true);
}

public boolean getPreferLowerCaseEnums() {
Expand Down

0 comments on commit dc9b408

Please sign in to comment.