Skip to content

Commit 4bf81df

Browse files
committed
vital.vim: fix lint num
1 parent bc1dfdc commit 4bf81df

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

autoload/vital/vital.vim

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ function! s:_format_throwpoint(throwpoint) abort
190190
return join(funcs, "\n")
191191
endfunction
192192

193-
" vimlint workaround unpack rest value/__
194-
" @vimlint(EVL103, 1, l:__)
193+
" @vimlint(EVL102, 1, l:_)
194+
" @vimlint(EVL102, 1, l:__)
195195
function! s:_get_func_info(name) abort
196196
let name = a:name
197197
if a:name =~# '^\d\+$' " is anonymous-function
@@ -215,7 +215,8 @@ function! s:_get_func_info(name) abort
215215
\ 'attrs': filter(['dict', 'abort', 'range', 'closure'], 'signature =~# (").*" . v:val)'),
216216
\ }
217217
endfunction
218-
" @vimlint(EVL103, 0, l:__)
218+
" @vimlint(EVL102, 0, l:__)
219+
" @vimlint(EVL102, 0, l:_)
219220

220221
" s:_get_module() returns module object wihch has all script local functions.
221222
function! s:_get_module(name) abort dict

0 commit comments

Comments
 (0)