diff options
Diffstat (limited to 'lsp-write.c')
-rw-r--r-- | lsp-write.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lsp-write.c b/lsp-write.c index 85c5781..20a72ca 100644 --- a/lsp-write.c +++ b/lsp-write.c @@ -458,7 +458,8 @@ void write_request(LSP *lsp, LSPRequest *request) { write_key_obj_start(o, "workspace"); write_key_bool(o, "workspaceFolders", true); write_key_obj_start(o, "workspaceEdit"); - write_key_bool(o, "documentChanges", true); + // currently unsupported -- see ide-rename-symbol.c + // write_key_bool(o, "documentChanges", true); write_key_arr_start(o, "resourceOperations"); write_arr_elem_string(o, "create"); write_arr_elem_string(o, "rename"); |