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 d5508de commit fbe6addCopy full SHA for fbe6add
src/extension.ts
@@ -2,4 +2,6 @@ import * as vscode from 'vscode';
2
3
export function activate(context: vscode.ExtensionContext) {
4
5
+
6
7
}
syntaxes/ini.tmLanguage.json
@@ -31,6 +31,9 @@
31
{
32
"include": "#addmodule-block"
33
},
34
+ {
35
+ "include": "#inline-removemodule"
36
+ },
37
38
"include": "#assignment"
39
@@ -62,6 +65,17 @@
62
65
63
66
]
64
67
68
+ "inline-removemodule": {
69
+ "match": "\\s*\\b(RemoveModule)\\b\\s*([a-zA-Z]\\w+)",
70
+ "captures": {
71
+ "1": {
72
+ "name": "keyword.control.ini"
73
74
+ "2": {
75
+ "name": "storage.type.ini"
76
+ }
77
78
79
"assignment": {
80
"begin": "(^[ \\t]+)?([a-zA-Z]\\w+)\\s*(\\=)\\s*",
81
"beginCaptures": {
0 commit comments