This commit is contained in:
2025-08-01 14:11:46 +02:00
parent 4d30d7f9fa
commit bbea041283
2 changed files with 25 additions and 30 deletions

View File

@@ -46,18 +46,18 @@ return {
-- Create autocommand which carries out the actual linting
-- on the specified events.
local lint_augroup = vim.api.nvim_create_augroup('lint', { clear = true })
vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
group = lint_augroup,
callback = function()
-- Only run the linter in buffers that you can modify in order to
-- avoid superfluous noise, notably within the handy LSP pop-ups that
-- describe the hovered symbol using Markdown.
if vim.opt_local.modifiable:get() then
lint.try_lint()
end
end,
})
-- local lint_augroup = vim.api.nvim_create_augroup('lint', { clear = true })
-- vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
-- group = lint_augroup,
-- callback = function()
-- -- Only run the linter in buffers that you can modify in order to
-- -- avoid superfluous noise, notably within the handy LSP pop-ups that
-- -- describe the hovered symbol using Markdown.
-- if vim.opt_local.modifiable:get() then
-- lint.try_lint()
-- end
-- end,
-- })
end,
},
}