Compare commits
3
Commits
2026.9.200
...
2026.9.210
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a5ff3b55ff | ||
|
|
26225eb8ed | ||
|
|
844138b383 |
+1
-1
@@ -2,7 +2,7 @@
|
||||
"name": "nx-post-support",
|
||||
"displayName": "NX Postprocessor Support",
|
||||
"description": "VS Code extension for NX CAM postprocessor development with language support and remote Tcl debugging for CDL, TCL, and DEF files",
|
||||
"version": "2026.9.100",
|
||||
"version": "2026.9.200",
|
||||
"publisher": "Christoph",
|
||||
"icon": "images/nx-1.png",
|
||||
"activationEvents": [
|
||||
|
||||
@@ -5,6 +5,9 @@
|
||||
{
|
||||
"include": "#comment"
|
||||
},
|
||||
{
|
||||
"include": "#escaped-quoted-strings"
|
||||
},
|
||||
{
|
||||
"include": "#strings"
|
||||
},
|
||||
@@ -28,6 +31,31 @@
|
||||
}
|
||||
],
|
||||
"repository": {
|
||||
"escaped-quoted-strings": {
|
||||
"name": "string.quoted.double.def",
|
||||
"begin": "\\\\\"",
|
||||
"end": "\\\\\"",
|
||||
"beginCaptures": {
|
||||
"0": {
|
||||
"name": "punctuation.definition.string.begin.def"
|
||||
}
|
||||
},
|
||||
"endCaptures": {
|
||||
"0": {
|
||||
"name": "punctuation.definition.string.end.def"
|
||||
}
|
||||
},
|
||||
"patterns": [
|
||||
{
|
||||
"name": "constant.character.escape.def",
|
||||
"match": "\\\\."
|
||||
},
|
||||
{
|
||||
"name": "variable.other.property",
|
||||
"match": "\\$[_a-zA-Z][_a-zA-Z0-9]*(\\(\\$?[_a-zA-Z][_a-zA-Z0-9]*(,\\$?[_a-zA-Z][_a-zA-Z0-9]*)*\\))?"
|
||||
}
|
||||
]
|
||||
},
|
||||
"keywords": {
|
||||
"patterns": [
|
||||
{
|
||||
@@ -151,4 +179,4 @@
|
||||
}
|
||||
},
|
||||
"scopeName": "source.def"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user