You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I pinpoint the issue by removing all of my plugins except nvim-lint
this happen when doing :w
linter - clang-tidy
file size - 16.94kb
lines - 544
nvim - 0.10.2v
os - windows
shell - powershell
terminal - windows terminal
config
local plugin = require 'lint'
plugin.linters.clangtidy.args = {
'-p',
'build',
}
plugin.linters_by_ft = {
lua = { 'luacheck' },
c = { 'clangtidy' },
cpp = { 'clangtidy' },
javascript = { 'eslint_d' },
javascriptreact = { 'eslint_d' },
typescript = { 'eslint_d' },
typescriptreact = { 'eslint_d' },
}
vim.api.nvim_create_autocmd({ 'BufWritePost' }, {
callback = function()
-- try_lint without arguments runs the linters defined in `linters_by_ft`
-- for the current filetype
require('lint').try_lint()
end,
})
will try to recreate the same thing in linux.
The text was updated successfully, but these errors were encountered:
reiend
changed the title
Larger source files cause failure to delete backup files
larger source files cause failure to delete backup files
Oct 24, 2024
reiend
changed the title
larger source files cause failure to delete backup files
larger source files cause failure to delete backup files when doing :w
Oct 24, 2024
I pinpoint the issue by removing all of my plugins except nvim-lint
this happen when doing :w
linter - clang-tidy
file size - 16.94kb
lines - 544
nvim - 0.10.2v
os - windows
shell - powershell
terminal - windows terminal
config
will try to recreate the same thing in linux.
The text was updated successfully, but these errors were encountered: