fix for removals
This commit is contained in:
parent
4bda425371
commit
e87c10f225
|
@ -280,23 +280,25 @@ M.tbl_override_req = function(name, default_table)
|
||||||
return vim.tbl_deep_extend("force", default_table, override)
|
return vim.tbl_deep_extend("force", default_table, override)
|
||||||
end
|
end
|
||||||
|
|
||||||
--Helper function to get key from default plugin table
|
|
||||||
local get_plugin_index = function(plugin_table, plugin_name)
|
|
||||||
for index, plugin in ipairs(plugin_table) do
|
|
||||||
if plugin[1] == plugin_name then
|
|
||||||
return index
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
M.remove_default_plugins = function(plugin_table)
|
M.remove_default_plugins = function(plugin_table)
|
||||||
local removals = require("core.utils").load_config().plugins.default_plugin_remove or {}
|
local removals = require("core.utils").load_config().plugins.default_plugin_remove or {}
|
||||||
if vim.tbl_isempty(removals) then return plugin_table end
|
if vim.tbl_isempty(removals) then return plugin_table end
|
||||||
for _, plugin_removal in ipairs(removals) do
|
newtable = {}
|
||||||
index = get_plugin_index(plugin_table, plugin_removal)
|
local i = 1
|
||||||
plugin_table[index] = nil
|
for index, value in ipairs(plugin_table) do
|
||||||
|
local removed = false
|
||||||
|
for _, removal in ipairs(removals) do
|
||||||
|
if value[1] == removal then
|
||||||
|
removed = true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if not removed then
|
||||||
|
newtable[i] = value
|
||||||
|
i = i+1
|
||||||
|
end
|
||||||
end
|
end
|
||||||
return plugin_table
|
return newtable
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
Loading…
Reference in New Issue