neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit add7e106d59b8e3822310846a850b3ed3fb5db0e
parent 6a486c44e66f05ae11137ad7a192b89989192566
Author: Keith Smiley <keithbsmiley@gmail.com>
Date:   Mon, 24 Jul 2023 08:58:59 -0700

fix(lsp): noisy warning about offset_encodings #24441

In the case you hit this warning in a buffer (like with C++ and clangd),
this message potentially fires over and over again making it difficult
to use the editor at all.
Diffstat:
Mruntime/lua/vim/lsp/util.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runtime/lua/vim/lsp/util.lua b/runtime/lua/vim/lsp/util.lua @@ -2026,7 +2026,7 @@ function M._get_offset_encoding(bufnr) if not offset_encoding then offset_encoding = this_offset_encoding elseif offset_encoding ~= this_offset_encoding then - vim.notify( + vim.notify_once( 'warning: multiple different client offset_encodings detected for buffer, this is not supported yet', vim.log.levels.WARN )