feat: supress ccls offset encoding messages

This commit is contained in:
NotAShelf 2023-07-13 23:22:16 +03:00
parent 01a1fbdf55
commit de84d74144
No known key found for this signature in database
GPG Key ID: 02D1DD3FA08B6B29
1 changed files with 10 additions and 1 deletions

View File

@ -23,8 +23,17 @@ in {
DEBUG = "${cfg.icons.DEBUG}", DEBUG = "${cfg.icons.DEBUG}",
TRACE = "${cfg.icons.TRACE}", TRACE = "${cfg.icons.TRACE}",
}, },
} }
-- required to fix offset_encoding errors
local notify = vim.notify
vim.notify = function(msg, ...)
if msg:match("warning: multiple different client offset_encodings") then
return
end
notify(msg, ...)
end
''; '';
}; };
} }