We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62613e9 commit 0e59aa9Copy full SHA for 0e59aa9
1 file changed
Tool/Sources/GitHubCopilotService/LanguageServer/CopilotLocalProcessServer.swift
@@ -45,7 +45,8 @@ class CopilotLocalProcessServer {
45
// we need to get the request IDs from a custom transport before the data
46
// is written to the language server.
47
customTransport.onWriteRequest = { [weak self] request in
48
- if request.method == "getCompletionsCycling" {
+ if request.method == "getCompletionsCycling"
49
+ || request.method == "textDocument/inlineCompletion" {
50
Task { @MainActor [weak self] in
51
self?.ongoingCompletionRequestIDs.append(request.id)
52
}
0 commit comments