We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Call
1 parent 7b02eb0 commit 7a315d3Copy full SHA for 7a315d3
syntaxes/tests/procedure.bas
@@ -36,3 +36,7 @@ Function withParam(Optional p1 As MyType)
36
' ^^^^^^^^ keyword.control.vba
37
End Function
38
' <------------ keyword.other.vba
39
+
40
+Call mSub()
41
+' <---- keyword.other.vba
42
+' ^^^^ entity.name.function.vba
syntaxes/vba.tmGrammar.yml
@@ -40,7 +40,7 @@ repository:
functions:
name: entity.name.function.vba
43
- match: (?i:\b(?<=(Function|Sub)\s)[a-zA-Z][a-zA-Z0-9_]*\b)(?=\(\)?)
+ match: (?i:\b(?<=(Call|Function|Sub)\s)[a-zA-Z][a-zA-Z0-9_]*\b)(?=\(\)?)
44
45
numbers:
46
patterns:
0 commit comments