Skip to content

Commit e731994

Browse files
committed
t
1 parent d7bbf39 commit e731994

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/amazonq/src/app/inline/recommendationService.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
InlineCompletionWithReferencesParams,
88
inlineCompletionWithReferencesRequestType,
99
TextDocumentContentChangeEvent,
10-
editCompletionRequestType,
10+
// editCompletionRequestType,
1111
LogInlineCompletionSessionResultsParams,
1212
} from '@aws/language-server-runtimes/protocol'
1313
import { CancellationToken, InlineCompletionContext, Position, TextDocument, commands } from 'vscode'
@@ -152,12 +152,12 @@ export class RecommendationService {
152152
/**
153153
* Though Edit request is sent on keystrokes everytime, the language server will execute the request in a debounced manner so that it won't be immediately executed.
154154
*/
155-
const editPromise: Promise<InlineCompletionListWithReferences> = languageClient.sendRequest(
156-
editCompletionRequestType.method,
157-
request,
158-
token
159-
)
160-
ps.push(editPromise)
155+
// const editPromise: Promise<InlineCompletionListWithReferences> = languageClient.sendRequest(
156+
// editCompletionRequestType.method,
157+
// request,
158+
// token
159+
// )
160+
// ps.push(editPromise)
161161

162162
/**
163163
* First come first serve, ideally we should simply return the first response returned. However there are some caviar here because either

0 commit comments

Comments
 (0)