diff options
| author | Yi Ming <ofseed@foxmail.com> | 2024-10-04 14:26:11 +0800 |
|---|---|---|
| committer | Mathias Fußenegger <mfussenegger@users.noreply.github.com> | 2024-10-04 12:22:46 +0200 |
| commit | 305012ea073267492e1d626a304c6993b0dfa145 (patch) | |
| tree | b20a77f06306995a11ed3ec659ac669fa346220e | |
| parent | b45c50f3140e7ece593f2126840900f5cc3d39ea (diff) | |
| download | rneovim-305012ea073267492e1d626a304c6993b0dfa145.tar.gz rneovim-305012ea073267492e1d626a304c6993b0dfa145.tar.bz2 rneovim-305012ea073267492e1d626a304c6993b0dfa145.zip | |
fix(lsp): enable `additionalPropertiesSupport`
| -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 0eb10af1ea..1699fff0c1 100644 --- a/runtime/lua/vim/lsp/protocol.lua +++ b/runtime/lua/vim/lsp/protocol.lua @@ -562,7 +562,7 @@ function protocol.make_client_capabilities() workDoneProgress = true, showMessage = { messageActionItem = { - additionalPropertiesSupport = false, + additionalPropertiesSupport = true, }, }, showDocument = { |