mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-16 02:10:15 -04:00
pass full module path in recurse accumulator to enable/disable sub modules
This commit is contained in:
parent
1c366a3a1c
commit
0478fe8a48
1 changed files with 3 additions and 3 deletions
|
|
@ -279,13 +279,13 @@ function M.setup(user_data)
|
||||||
else
|
else
|
||||||
config.modules[name] = vim.tbl_deep_extend('force', config.modules[name] or {}, data)
|
config.modules[name] = vim.tbl_deep_extend('force', config.modules[name] or {}, data)
|
||||||
|
|
||||||
recurse_modules(function(mod_name)
|
recurse_modules(function(_, _, new_path)
|
||||||
if data.enable then
|
if data.enable then
|
||||||
enable_all(mod_name)
|
enable_all(new_path)
|
||||||
end
|
end
|
||||||
|
|
||||||
for _, lang in ipairs(data.disable or {}) do
|
for _, lang in ipairs(data.disable or {}) do
|
||||||
disable_mod_conf_autocmd(mod_name, lang)
|
disable_mod_conf_autocmd(new_path, lang)
|
||||||
end
|
end
|
||||||
end, config.modules)
|
end, config.modules)
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue