diff options
Diffstat (limited to 'runtime/doc/news.txt')
-rw-r--r-- | runtime/doc/news.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index 31f3ff2cd1..4c864312f5 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -45,7 +45,12 @@ The following new APIs or features were added. its initialization response, Nvim automatically sets the client's `offset_encoding` field. -• Dynamic registration of LSP capabilities. An implication of this change is that checking a client's `server_capabilities` is no longer a sufficient indicator to see if a server supports a feature. Instead use `client.supports_method(<method>)`. It considers both the dynamic capabilities and static `server_capabilities`. +• Dynamic registration of LSP capabilities. An implication of this change is + that checking a client's `server_capabilities` is no longer a sufficient + indicator to see if a server supports a feature. Instead use + `client.supports_method(<method>)`. It considers both the dynamic + capabilities and static `server_capabilities`. + • |vim.iter()| provides a generic iterator interface for tables and Lua iterators |luaref-in|. |