diff options
author | Maria José Solano <majosolano99@gmail.com> | 2025-03-06 00:21:47 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-06 08:21:47 +0000 |
commit | 41b07b128ccbdc445c3a56618b0c6ec6ed0f3438 (patch) | |
tree | 68a238a3973f489da9987d404204eca78b43b778 /runtime/lua/vim/lsp/protocol.lua | |
parent | 0c0352783fca7e9c56cd5ca8253834fee77c9d59 (diff) | |
download | rneovim-41b07b128ccbdc445c3a56618b0c6ec6ed0f3438.tar.gz rneovim-41b07b128ccbdc445c3a56618b0c6ec6ed0f3438.tar.bz2 rneovim-41b07b128ccbdc445c3a56618b0c6ec6ed0f3438.zip |
feat(lsp): support for resolving code action command (#32704)
* fix(lsp): don't call codeAction_resolve with commands
* feat(lsp): support for resolving code action command
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 7975006f9d..feff9adbd0 100644 --- a/runtime/lua/vim/lsp/protocol.lua +++ b/runtime/lua/vim/lsp/protocol.lua @@ -424,7 +424,7 @@ function protocol.make_client_capabilities() isPreferredSupport = true, dataSupport = true, resolveSupport = { - properties = { 'edit' }, + properties = { 'edit', 'command' }, }, }, codeLens = { |