We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea5ca7b commit 89250b0Copy full SHA for 89250b0
autoload/vimlparser.vim
@@ -4972,10 +4972,10 @@ function! s:Compiler.compile_function(node) abort
4972
let rlist = map(a:node.rlist, 'self.compile(v:val)')
4973
let default_args = map(a:node.default_args, 'self.compile(v:val)')
4974
if !empty(rlist)
4975
- let remaining = v:false
+ let remaining = s:FALSE
4976
if rlist[-1] ==# '...'
4977
call remove(rlist, -1)
4978
- let remaining = v:true
+ let remaining = s:TRUE
4979
endif
4980
for i in range(len(rlist))
4981
if i < len(rlist) - len(default_args)
0 commit comments