diff options
author | lvimuser <109605931+lvimuser@users.noreply.github.com> | 2022-10-08 05:22:25 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-08 10:22:25 +0200 |
commit | 0773a9ee3a21db54cd6b2376dd2e087bc09d5ea1 (patch) | |
tree | bd41979a0da6a0b0f5043620633d514111510557 /runtime/lua/vim/lsp/protocol.lua | |
parent | cfdb4cbada8c65aa57e69776bcc0f7b8b298317a (diff) | |
download | rneovim-0773a9ee3a21db54cd6b2376dd2e087bc09d5ea1.tar.gz rneovim-0773a9ee3a21db54cd6b2376dd2e087bc09d5ea1.tar.bz2 rneovim-0773a9ee3a21db54cd6b2376dd2e087bc09d5ea1.zip |
feat(lsp): support window/showDocument (#19977)
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 27da60b4ae..4034753322 100644 --- a/runtime/lua/vim/lsp/protocol.lua +++ b/runtime/lua/vim/lsp/protocol.lua @@ -778,7 +778,7 @@ function protocol.make_client_capabilities() }, }, showDocument = { - support = false, + support = true, }, }, } |