notveryserious
Results
82
comments of
notveryserious
You could probably do something like this, given that it seems `event.data` should be empty when nothing is done. ```lua vim.api.nvim_create_autocmd('User', { pattern = 'MasonToolsUpdateCompleted', callback = function(event) vim.schedule(function() if...
I too am noticing that gitlint is not working via nvim-lint's stdin. When using the following config: ```lua return { cmd = 'gitlint', stdin = true, args = { '--debug'...