summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCPea <[email protected]>2023-04-24 19:20:36 +0700
committerCPea <[email protected]>2023-04-24 19:20:36 +0700
commite69596627c7b4f27a529b3f0a23690f980185f21 (patch)
tree504a78ffa668e309894c8802549f9b55f202946d
parent0b3209e703726aca364e1069a52c6f74ad2613f3 (diff)
chore: more general deprecated message
-rw-r--r--lua/lvim/config/_deprecated.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/config/_deprecated.lua b/lua/lvim/config/_deprecated.lua
index 75b8daf8..55412d6a 100644
--- a/lua/lvim/config/_deprecated.lua
+++ b/lua/lvim/config/_deprecated.lua
@@ -57,7 +57,7 @@ function M.handle()
lvim.lsp.float = {}
setmetatable(lvim.lsp.float, {
__newindex = function(_, k, _)
- deprecate("lvim.lsp.float." .. k, "Use `float` option in `vim.diagnostic.config()` instead.")
+ deprecate("lvim.lsp.float." .. k, "Use options provided by the handler instead")
end,
})