-
Hi, I'm trying to use the event |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
That should work as is I think? The below for example works: vim.api.nvim_create_autocmd("InsertEnter", {
pattern = "*.html,*.lua",
callback = function()
vim.notify("InsertEnter")
end,
}) |
Beta Was this translation helpful? Give feedback.
-
Oh mb it does seem to work. It seems the issue was with mappings not working if I use the mappings too quickly after |
Beta Was this translation helpful? Give feedback.
That should work as is I think?
"*.md,*.txt,*.tex"
is a valid value for thepattern
field.The below for example works: