diff options
author | Mathias Fussenegger <f.mathias@zignar.net> | 2021-03-18 11:32:33 +0100 |
---|---|---|
committer | Mathias Fussenegger <f.mathias@zignar.net> | 2021-03-18 19:53:43 +0100 |
commit | 84213b5b9adfaaf133771432ca468cea8faa4cc9 (patch) | |
tree | 1c949c17cf99f1b4e144ad8ae9aab33d122a9137 /runtime/lua/vim/lsp/protocol.lua | |
parent | 191afb42be90c3f39f445c8340632e732e6710f8 (diff) | |
download | rneovim-84213b5b9adfaaf133771432ca468cea8faa4cc9.tar.gz rneovim-84213b5b9adfaaf133771432ca468cea8faa4cc9.tar.bz2 rneovim-84213b5b9adfaaf133771432ca468cea8faa4cc9.zip |
lsp: Add support for delete workspaceEdit resource operation
Diffstat (limited to 'runtime/lua/vim/lsp/protocol.lua')
-rw-r--r-- | runtime/lua/vim/lsp/protocol.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/protocol.lua b/runtime/lua/vim/lsp/protocol.lua index 085ca7b4a1..7e43eb84de 100644 --- a/runtime/lua/vim/lsp/protocol.lua +++ b/runtime/lua/vim/lsp/protocol.lua @@ -750,7 +750,7 @@ function protocol.make_client_capabilities() workspaceFolders = true; applyEdit = true; workspaceEdit = { - resourceOperations = {'rename', 'create',}, + resourceOperations = {'rename', 'create', 'delete',}, }; }; callHierarchy = { |