Skip to content

Commit

Permalink
Disable snippet edit support. (#1409)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer authored Jan 17, 2024
1 parent 193b298 commit 3c025a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/common/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1837,7 +1837,7 @@ export abstract class BaseLanguageClient implements FeatureClient<Middleware, La
groupsOnLabel: true
};
workspaceEdit.metadataSupport = true;
workspaceEdit.snippetEditSupport = true;
workspaceEdit.snippetEditSupport = false;

const diagnostics = ensure(ensure(result, 'textDocument')!, 'publishDiagnostics')!;
diagnostics.relatedInformation = true;
Expand Down

0 comments on commit 3c025a1

Please sign in to comment.