diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2026-04-17 18:14:14 +0200 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2026-04-18 16:57:37 +0200 |
| commit | 3ebfa2a3cbbed848667fe26c16973ce7e43a04e4 (patch) | |
| tree | 8026deb4b85a46be16eb32bbe85f3b9c24c5e4c7 /scripts | |
| parent | 48d11681c2c108e34be088cf2f6ce6cc753fa57f (diff) | |
feat(vimfn): use Lua for more excmds/vimfns
Problem:
Too much boilerplate needed to use Lua to impl an excmd or f_xx
function.
Solution:
- Add `nlua_call_vimfn` which takes the args typval, executes
Lua, and returns a typval.
- refactor(excmd): lua impl for :log, :lsp
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/linterrcodes.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/linterrcodes.lua b/scripts/linterrcodes.lua index 578ff16a01..e6767fbeba 100644 --- a/scripts/linterrcodes.lua +++ b/scripts/linterrcodes.lua @@ -48,7 +48,7 @@ local dup_allowed = { E509 = 2, E5101 = 2, E5102 = 2, - E5108 = 4, + E5108 = 6, E5111 = 2, E513 = 2, E521 = 2, |
