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 0cd4964 commit 18e1afbCopy full SHA for 18e1afb
test/test1.ok
@@ -59,6 +59,8 @@
59
(let %= a 5)
60
(let ..= a 'foo')
61
(echo (concat (concat 'foo' 'bar') 'baz'))
62
+(echo (concat 'foo' (concat 'bar' 'baz')))
63
+(echo (concat (concat 'foo' 'bar') 'baz'))
64
(let = a '🐥')
65
(const = a 1)
66
(const = (a b) (list 1 2))
test/test1.vim
@@ -66,6 +66,8 @@ let a /= 4
let a %= 5
67
let a ..= 'foo'
68
echo ('foo' .. 'bar')..'baz'
69
+echo 'foo' .. ('bar'..'baz')
70
+echo 'foo' .. 'bar' .. 'baz'
71
let a = '🐥'
72
const a = 1
73
const [a, b] = [1, 2]
0 commit comments