Closed rgruyters closed 1 month ago
Issue is solved by removing the 'BufEnter' event on autocmd.
vim.api.nvim_create_autocmd({ 'BufWritePost', 'InsertLeave' }, {
group = vim.api.nvim_create_augroup('nvim-lint', { clear = true }),
callback = function()
lint.try_lint()
end,
})
When entering a signature help window, markdownlint gets executed and show warning messages within the window. (check screenshot)
When I temporarily remove
markdownlint
from Mason and try opening a signature window, I get the following error message:Is it possible to disable this feature?
For reference, I use https://github.com/nvim-lua/kickstart.nvim