-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
abf8ae5
commit 9b04754
Showing
8 changed files
with
745 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
out | ||
node_modules | ||
client/server | ||
.vscode-test | ||
*.vsix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "salient-lang", | ||
"description": "Salient VSCode Plugin", | ||
"author": "Ajani Bilby", | ||
"license": "MIT", | ||
"version": "0.0.1", | ||
"publisher": "Ajani Bilby", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ajanibilby/salient" | ||
}, | ||
"engines": { | ||
"vscode": "^1.43.0" | ||
}, | ||
"dependencies": { | ||
"vscode-languageclient": "^6.1.3" | ||
}, | ||
"devDependencies": { | ||
"@types/vscode": "1.43.0", | ||
"vscode-test": "^1.3.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "commonjs", | ||
"target": "es2019", | ||
"lib": ["ES2019"], | ||
"outDir": "out", | ||
"rootDir": "src", | ||
"sourceMap": true | ||
}, | ||
"include": ["src"], | ||
"exclude": ["node_modules", ".vscode-test"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"comments": { | ||
"lineComment": "//", | ||
"blockComment": [ | ||
"/*", | ||
"*/" | ||
] | ||
}, | ||
"brackets": [ | ||
[ | ||
"{", | ||
"}" | ||
], | ||
[ | ||
"[", | ||
"]" | ||
], | ||
[ | ||
"(", | ||
")" | ||
] | ||
], | ||
"autoClosingPairs": [ | ||
{ | ||
"open": "[", | ||
"close": "]" | ||
}, | ||
{ | ||
"open": "{", | ||
"close": "}" | ||
}, | ||
{ | ||
"open": "(", | ||
"close": ")" | ||
}, | ||
{ | ||
"open": "\"", | ||
"close": "\"", | ||
"notIn": [ | ||
"string" | ||
] | ||
} | ||
], | ||
"surroundingPairs": [ | ||
[ | ||
"{", | ||
"}" | ||
], | ||
[ | ||
"[", | ||
"]" | ||
], | ||
[ | ||
"(", | ||
")" | ||
], | ||
[ | ||
"\"", | ||
"\"" | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"name": "uniview", | ||
"displayName": "%displayName%", | ||
"description": "%description%", | ||
"version": "0.0.3", | ||
"publisher": "qupa-project", | ||
"license": "MIT", | ||
"repository": "https://github.com/qupa-project/uniview-vscode", | ||
"engines": { | ||
"vscode": "*" | ||
}, | ||
"scripts": { | ||
"package": "vsce package" | ||
}, | ||
"contributes": { | ||
"languages": [ | ||
{ | ||
"id": "uniview", | ||
"extensions": [ | ||
".uv" | ||
], | ||
"aliases": [ | ||
"Uniview", | ||
"uni-view" | ||
], | ||
"configuration": "./language-configuration.json" | ||
} | ||
], | ||
"grammars": [ | ||
{ | ||
"language": "uniview", | ||
"scopeName": "source.uv", | ||
"path": "./syntaxes/uniview.tmLanguage.json" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"displayName": "Salient Language", | ||
"description": "Provides syntax highlighting and bracket matching in Salient-lang files." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Uniview Language Extension | ||
|
||
The official syntax highlighter for [uniview](https://github.com/qupa-project/uniview-lang) |
Oops, something went wrong.