We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d597bd commit 92b7fa7Copy full SHA for 92b7fa7
packages/amazonq/src/lsp/client.ts
@@ -12,7 +12,6 @@ import {
12
CreateFilesParams,
13
DeleteFilesParams,
14
DidChangeWorkspaceFoldersParams,
15
- DidSaveTextDocumentParams,
16
GetConfigurationFromServerParams,
17
RenameFilesParams,
18
ResponseMessage,
@@ -325,13 +324,6 @@ async function onLanguageServerReady(
325
324
}),
326
} as RenameFilesParams)
327
328
- vscode.workspace.onDidSaveTextDocument((e) => {
329
- client.sendNotification('textDocument/didSave', {
330
- textDocument: {
331
- uri: e.uri.fsPath,
332
- },
333
- } as DidSaveTextDocumentParams)
334
- }),
335
vscode.workspace.onDidChangeWorkspaceFolders((e) => {
336
client.sendNotification('workspace/didChangeWorkspaceFolder', {
337
event: {
0 commit comments