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.
2 parents c4110ad + 92b7fa7 commit 8e870bfCopy full SHA for 8e870bf
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,
@@ -334,13 +333,6 @@ async function onLanguageServerReady(
334
333
}),
335
} as RenameFilesParams)
336
337
- vscode.workspace.onDidSaveTextDocument((e) => {
338
- client.sendNotification('workspace/didSaveTextDocument', {
339
- textDocument: {
340
- uri: e.uri.fsPath,
341
- },
342
- } as DidSaveTextDocumentParams)
343
- }),
344
vscode.workspace.onDidChangeWorkspaceFolders((e) => {
345
client.sendNotification('workspace/didChangeWorkspaceFolder', {
346
event: {
0 commit comments