Skip to content

Commit

Permalink
Fix linked editing range popups
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdallo committed Nov 24, 2021
1 parent 71acfcf commit d05a178
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lsp/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ function createClient(clojureLspPath: string): LanguageClient {
"keep-require-at-start?": true,
},
middleware: {
provideLinkedEditingRange: async (_document, _position, _token, _next): Promise<vscode.LinkedEditingRanges> => {
return null;
},
handleDiagnostics(uri, diagnostics, next) {
if (uri.path.endsWith(config.REPL_FILE_EXT)) {
return;
Expand Down

0 comments on commit d05a178

Please sign in to comment.