fix: disable some LSP requests that we don't actually support
This commit is contained in:
parent
5a01792fd1
commit
32f00daf76
1 changed files with 2 additions and 2 deletions
|
@ -792,7 +792,7 @@ fn send_lsp_init_request(self: *Self, lsp: LSP, project_path: []const u8, projec
|
|||
.executeCommand = .{ .dynamicRegistration = true },
|
||||
// .didChangeConfiguration = .{ .dynamicRegistration = true },
|
||||
.workspaceFolders = true,
|
||||
.semanticTokens = .{ .refreshSupport = true },
|
||||
.semanticTokens = .{ .refreshSupport = false },
|
||||
.fileOperations = .{
|
||||
.dynamicRegistration = true,
|
||||
.didCreate = true,
|
||||
|
@ -1013,7 +1013,7 @@ fn send_lsp_init_request(self: *Self, lsp: LSP, project_path: []const u8, projec
|
|||
.messageActionItem = .{ .additionalPropertiesSupport = true },
|
||||
},
|
||||
.showDocument = .{ .support = true },
|
||||
.workDoneProgress = true,
|
||||
.workDoneProgress = false,
|
||||
},
|
||||
.general = .{
|
||||
.staleRequestSupport = .{
|
||||
|
|
Loading…
Add table
Reference in a new issue