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.
fn[]()
1 parent 1e3a2a1 commit 8080346Copy full SHA for 8080346
syntax/jule.vim
@@ -25,8 +25,9 @@ syntax keyword juleStorage static const mut pub self
25
syntax keyword juleConstant true false nil
26
27
" function names
28
-" regex: a word followed by `(`, but not including `(` in the match
+" regex: a word followed by either `(` or `[`, but not including `(` or `[`
29
syntax match juleFunction "\<\k\+\ze("
30
+syntax match juleFunction "\<\k\+\ze\["
31
32
" numbers
33
" regex: a sequence of digits, possibly separated by `_` (e.g. `123`, `123_456`)
0 commit comments