aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorJon Huhn <nojnhuh@users.noreply.github.com>2023-03-05 00:52:27 -0600
committerGitHub <noreply@github.com>2023-03-05 07:52:27 +0100
commitac69ba5fa0081026f2c5e6e29d5788802479b7b9 (patch)
treef78cce287bc020646410eaa57a9565647e2cba03 /runtime/doc
parent419819b6245e120aba8897e3ddea711b2cd0246c (diff)
downloadrneovim-ac69ba5fa0081026f2c5e6e29d5788802479b7b9.tar.gz
rneovim-ac69ba5fa0081026f2c5e6e29d5788802479b7b9.tar.bz2
rneovim-ac69ba5fa0081026f2c5e6e29d5788802479b7b9.zip
feat(lsp): implement workspace/didChangeWatchedFiles (#22405)
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/news.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt
index cda4792c9e..415195e27e 100644
--- a/runtime/doc/news.txt
+++ b/runtime/doc/news.txt
@@ -184,6 +184,11 @@ The following new APIs or features were added.
• Vim's `has('gui_running')` is now supported as a way for plugins to check if
a GUI (not the |TUI|) is attached to Nvim. |has()|
+• Added preliminary support for the `workspace/didChangeWatchedFiles` capability
+ to the LSP client to notify servers of file changes on disk. The feature is
+ disabled by default and can be enabled by setting the
+ `workspace.didChangeWatchedFiles.dynamicRegistration=true` capability.
+
==============================================================================
CHANGED FEATURES *news-changes*