Merged
Changes from all commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff line change
Expand Up@@ -82,6 +82,11 @@ public override async Task<CompletionList> Handle(CompletionParams request, Canc
// (typically files) returned by the space completion
return new CompletionList(completionResults, isIncomplete || request?.Context?.TriggerCharacter is " ");
}
// Ignore canceled requests (logging will pollute the output).
catch (TaskCanceledException)
{
return new CompletionList(isIncomplete: true);
}
// We can't do anything about completions failing.
catch (Exception e)
{
Expand Down