Primeiro commit
This commit is contained in:
BIN
highlighting/vscode-reddust/icon.png
Normal file
BIN
highlighting/vscode-reddust/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.4 KiB |
5
highlighting/vscode-reddust/language-configuration.json
Normal file
5
highlighting/vscode-reddust/language-configuration.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"comments": {
|
||||
"lineComment": "//"
|
||||
}
|
||||
}
|
||||
28
highlighting/vscode-reddust/package.json
Normal file
28
highlighting/vscode-reddust/package.json
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
BIN
highlighting/vscode-reddust/reddust-1.0.0.vsix
Normal file
BIN
highlighting/vscode-reddust/reddust-1.0.0.vsix
Normal file
Binary file not shown.
19
highlighting/vscode-reddust/reddust.tmLanguage.json
Normal file
19
highlighting/vscode-reddust/reddust.tmLanguage.json
Normal 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": "//.*$"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user