mirror of
https://github.com/neovim/neovim
synced 2025-07-16 09:11:51 +00:00
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.
This commit is contained in:
@ -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
|
||||
)
|
||||
|
Reference in New Issue
Block a user