diff options
| author | CPea <[email protected]> | 2023-04-24 19:20:36 +0700 | 
|---|---|---|
| committer | CPea <[email protected]> | 2023-04-24 19:20:36 +0700 | 
| commit | e69596627c7b4f27a529b3f0a23690f980185f21 (patch) | |
| tree | 504a78ffa668e309894c8802549f9b55f202946d | |
| parent | 0b3209e703726aca364e1069a52c6f74ad2613f3 (diff) | |
chore: more general deprecated message
| -rw-r--r-- | lua/lvim/config/_deprecated.lua | 2 | 
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,    }) | 
