Web-Ide mit aufgenommen

This commit is contained in:
Riwoldt
2026-04-09 14:14:56 +02:00
parent 64816c45cc
commit 15cfaf332d
489 changed files with 186891 additions and 0 deletions
@@ -0,0 +1,59 @@
{
"fileTypes": [
"tst"
],
"name": "TST",
"patterns": [
{
"include": "#instruction"
},
{
"include": "#comment"
}
],
"repository": {
"instruction": {
"patterns": [
{
"comment": "Everything which is not a comment is a function",
"begin": "\\b",
"end": "(,|;)",
"patterns": [
{
"comment": "Every actual instruction starts with a function",
"name": "support.function",
"match": "(output-file|compare-to|output-list|set|eval|output|load)\\b"
},
{
"comment": "A single bit",
"name": "constant.numeric",
"match": "\\s(1|0)|%B(\\d|\\.)+"
},
{
"comment": "Filename with a known extension",
"name": "string.interpolated",
"match": "\\w+\\.(hdl|out|cmp)"
}
]
}
]
},
"comment": {
"patterns": [
{
"comment": "Inline comment",
"begin": "\\/\\/",
"end": "\\n",
"name": "comment.line.double-slash"
},
{
"comment": "Multiline comment",
"begin": "\\/\\*",
"end": "\\*\\/",
"name": "comment.block"
}
]
}
},
"scopeName": "source.tst"
}