diff options
author | Jordan <46637683+JordanllHarper@users.noreply.github.com> | 2024-10-17 09:35:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-17 01:35:19 -0700 |
commit | ce678043e3461d45f1251979cf047dd529b117ea (patch) | |
tree | 86b02f95002d53da89097d6f8263903d9ffce497 /runtime/doc | |
parent | e265363a884834ecbc43ede676b3d6127d644b34 (diff) | |
download | rneovim-ce678043e3461d45f1251979cf047dd529b117ea.tar.gz rneovim-ce678043e3461d45f1251979cf047dd529b117ea.tar.bz2 rneovim-ce678043e3461d45f1251979cf047dd529b117ea.zip |
feat(lsp): show server name in code actions #30830
Problem:
If there are multiple LSP clients, it's not clear which actions are provided by which servers. #30710
Solution:
Show the server name next to each action (only if there are multiple clients).
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/news.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index 4db9188f90..db2117e69f 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -182,6 +182,8 @@ LSP • |vim.lsp.buf.format()| now supports passing a list of ranges via the `range` parameter (this requires support for the `textDocument/rangesFormatting` request). +• |vim.lsp.buf.code_action()| actions show client name when there are multiple + clients. LUA |