We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db7348e commit 41b8364Copy full SHA for 41b8364
Syntaxes/mumps.sublime-syntax
@@ -18,12 +18,29 @@ contexts:
18
main:
19
- include: comment
20
21
+ - match: '^({{ident}})(\()'
22
+ captures:
23
+ 1: entity.name.function.mumps
24
+ 2: punctuation.section.group.begin.mumps
25
+ set: parms
26
+
27
- match: '^{{ident}}\b'
- scope: entity.name.function
28
+ scope: entity.name.function.mumps
29
30
- include: comments
31
- match: '{{ws}}+'
32
set: indent
33
34
+ parms:
35
+ - match: \b{{ident}}\b
36
+ scope: variable.parameter.function
37
+ - match: \n
38
+ scope: invalid.illegal
39
+ set: main
40
+ - match: \)
41
+ scope: punctuation.section.group.end.mumps
42
+ set: indent
43
44
indent:
45
- include: eol
46
- match: ([\. ]*)
0 commit comments