fix(ft): always trigger FileType when lazy-loading on ft

This commit is contained in:
Folke Lemaitre 2022-12-27 08:57:43 +01:00
parent b1e1b337a6
commit 5618076a45
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 7 additions and 2 deletions

View File

@ -11,6 +11,7 @@ M.trigger_events = {
BufRead = { "BufReadPre", "BufRead" }, BufRead = { "BufReadPre", "BufRead" },
BufReadPost = { "BufReadPre", "BufRead", "BufReadPost" }, BufReadPost = { "BufReadPre", "BufRead", "BufReadPost" },
} }
M.trigger_always = { "FileType" }
M.group = vim.api.nvim_create_augroup("lazy_handler_event", { clear = true }) M.group = vim.api.nvim_create_augroup("lazy_handler_event", { clear = true })
---@param value string ---@param value string
@ -31,8 +32,12 @@ function M:_add(value)
local groups = M.get_augroups(event, pattern) local groups = M.get_augroups(event, pattern)
-- load the plugins -- load the plugins
Loader.load(self.active[value], { [self.type] = value }) Loader.load(self.active[value], { [self.type] = value })
-- check if any plugin created an event handler for this event and fire the group if vim.tbl_contains(M.trigger_always, event) then
M.trigger(event, pattern, groups) vim.cmd("do " .. event)
else
-- check if any plugin created an event handler for this event and fire the group
M.trigger(event, pattern, groups)
end
Util.track() Util.track()
end, end,
}) })