diff options
author | Jon Huhn <nojnhuh@users.noreply.github.com> | 2023-03-05 00:52:27 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-05 07:52:27 +0100 |
commit | ac69ba5fa0081026f2c5e6e29d5788802479b7b9 (patch) | |
tree | f78cce287bc020646410eaa57a9565647e2cba03 /runtime/lua/vim/lsp/protocol.lua | |
parent | 419819b6245e120aba8897e3ddea711b2cd0246c (diff) | |
download | rneovim-ac69ba5fa0081026f2c5e6e29d5788802479b7b9.tar.gz rneovim-ac69ba5fa0081026f2c5e6e29d5788802479b7b9.tar.bz2 rneovim-ac69ba5fa0081026f2c5e6e29d5788802479b7b9.zip |
feat(lsp): implement workspace/didChangeWatchedFiles (#22405)
Diffstat (limited to 'runtime/lua/vim/lsp/protocol.lua')
-rw-r--r-- | runtime/lua/vim/lsp/protocol.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/lua/vim/lsp/protocol.lua b/runtime/lua/vim/lsp/protocol.lua index 41dfc9e00e..27dd68645a 100644 --- a/runtime/lua/vim/lsp/protocol.lua +++ b/runtime/lua/vim/lsp/protocol.lua @@ -834,6 +834,10 @@ function protocol.make_client_capabilities() semanticTokens = { refreshSupport = true, }, + didChangeWatchedFiles = { + dynamicRegistration = false, + relativePatternSupport = true, + }, }, experimental = nil, window = { |