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 4a79872 commit bfa4cddCopy full SHA for bfa4cdd
test/test1.ok
@@ -3,6 +3,8 @@
3
(return 0))
4
(function (s:bar (a 1) (b 2) . ...)
5
6
+(function (s:baz a (b 2) . ...)
7
+ (return 0))
8
(if 1
9
(echo "if 1")
10
elseif 2
test/test1.vim
@@ -5,6 +5,9 @@ endfunction
function s:bar(a = 1, b = 2, ...)
return 0
endfunction
+function s:baz(a, b = 2, ...)
+ return 0
+endfunction
11
if 1
12
echo "if 1"
13
0 commit comments