🐛 fix(nvim): cspell extra not taking self as first function argument

This commit is contained in:
Sergio Laín 2024-01-06 01:50:14 +01:00
parent ec07c7b6bb
commit f9b285d7ed
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -6,7 +6,7 @@ return {
},
linters = {
cspell = {
condition = function(self, ctx)
condition = function(ctx)
return vim.fs.find({ "cspell.json" }, { path = ctx.filename, upward = true })[1]
end,
},