From 540d6e7115fb32b5035ddaf0c1a26cbffb855dac Mon Sep 17 00:00:00 2001 From: Steven Arcangeli Date: Wed, 3 May 2023 09:49:55 -0700 Subject: [PATCH] cleanup: remove shim for deprecated config options --- lua/dressing/config.lua | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/lua/dressing/config.lua b/lua/dressing/config.lua index 457ab05..3303d8f 100644 --- a/lua/dressing/config.lua +++ b/lua/dressing/config.lua @@ -172,25 +172,6 @@ M.update = function(opts) ) end - for _, ns in ipairs({ "input", "select.builtin" }) do - local subconf = ns == "input" and newconf.input or newconf.select.builtin - for _, key in ipairs({ "winblend", "winhighlight" }) do - if subconf[key] then - vim.notify_once( - string.format( - "Deprecated(dressing.%s.%s) has moved to dressing.%s.win_options.%s\nSupport will be removed on 2023-03-01", - ns, - key, - ns, - key - ), - vim.log.levels.WARN - ) - subconf.win_options[key] = subconf[key] - end - end - end - if newconf.select.telescope and newconf.select.telescope.theme