diff options
author | kylo252 <[email protected]> | 2021-12-23 10:03:15 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-12-23 10:03:15 +0100 |
commit | 55934998286357e5cba13848720c25494051510f (patch) | |
tree | a98c25da2d55f5f75c7326bac2a8c2068568c420 /lua/lvim/config | |
parent | a3cf3b1f2a6f2fce80833753a133c9983e56d4e2 (diff) |
fix(lsp): set the handlers opts for v0.6 as well (#2109)
Diffstat (limited to 'lua/lvim/config')
-rw-r--r-- | lua/lvim/config/init.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/lvim/config/init.lua b/lua/lvim/config/init.lua index 9b6d36f0..ed01c4c8 100644 --- a/lua/lvim/config/init.lua +++ b/lua/lvim/config/init.lua @@ -66,6 +66,11 @@ local function handle_deprecated_settings() deprecation_notice(string.format("lvim.lang.%s", lang)) end end + + -- lvim.lsp.popup_border + if vim.tbl_contains(vim.tbl_keys(lvim.lsp), "popup_border") then + deprecation_notice "lvim.lsp.popup_border" + end end --- Override the configuration with a user provided one |