Primeiro commit

This commit is contained in:
Syntax
2025-07-23 02:31:18 -03:00
parent 58f9754a87
commit 399cfc3502
11 changed files with 407 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1,5 @@
{
"comments": {
"lineComment": "//"
}
}

View File

@@ -0,0 +1,28 @@
{
"name": "reddust",
"displayName": "RedDust Language",
"description": "Syntax highlighting for RedDust (.redd)",
"version": "1.0.0",
"publisher": "Syntax Echonomics",
"engines": {
"vscode": "^1.50.0"
},
"icon": "icon.png",
"contributes": {
"languages": [
{
"id": "reddust",
"aliases": ["RedDust", "reddust"],
"extensions": [".redd"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "reddust",
"scopeName": "source.reddust",
"path": "./reddust.tmLanguage.json"
}
]
}
}

Binary file not shown.

View File

@@ -0,0 +1,19 @@
{
"scopeName": "source.reddust",
"patterns": [
{
"name": "keyword.control.reddust",
"match": "^(\\s*[0-9A-F])(?=;)"
},
{
"name": "constant.numeric.reddust",
"match": "\\b[0-9A-F]\\b"
},
{
"name": "comment.line.double-slash.reddust",
"match": "//.*$"
}
]
}