Skip to content

Commit 0f930fe

Browse files
committed
Add syntax highlighting for UIX XML and embedded scripts
1 parent 5442392 commit 0f930fe

File tree

3 files changed

+455
-1
lines changed

3 files changed

+455
-1
lines changed

.vscode/launch.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"type": "extensionHost",
1111
"request": "launch",
1212
"args": [
13-
"--extensionDevelopmentPath=${workspaceFolder}"
13+
"--extensionDevelopmentPath=${workspaceFolder}",
14+
"--profile-temp"
1415
]
1516
}
1617
]

package.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@
2727
"aliases": ["UIX Script", "uix-script"],
2828
"extensions": [".uix-script"],
2929
"configuration": "./uix-script_language-configuration.json"
30+
},
31+
{
32+
"id": "uix-xml",
33+
"aliases": ["UIX XML", "uix-xml"],
34+
"extensions": [".uix"]
3035
}
3136
],
3237
"grammars": [
@@ -39,6 +44,11 @@
3944
"language": "uix-script",
4045
"scopeName": "source.uix-script",
4146
"path": "./syntaxes/uix-script.tmLanguage.json"
47+
},
48+
{
49+
"language": "uix-xml",
50+
"scopeName": "source.uix-xml",
51+
"path": "./syntaxes/uix-xml.tmLanguage.json"
4252
}
4353
]
4454
}

0 commit comments

Comments
 (0)