Skip to content

Commit 8aa4cc7

Browse files
Initial commit
0 parents  commit 8aa4cc7

12 files changed

+700
-0
lines changed

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3+
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4+
// List of extensions which should be recommended for users of this workspace.
5+
"recommendations": [
6+
]
7+
}

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// A launch configuration that launches the extension inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}"
14+
]
15+
}
16+
]
17+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.insertSpaces": false
3+
}

.vscodeignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.vscode/**
2+
.vscode-test/**
3+
.gitignore
4+
vsc-extension-quickstart.md

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
3+
All notable changes to the "embox-tools" extension pack will be documented in this file.
4+
5+
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
6+
7+
## [Unreleased]
8+
9+
- Initial release

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# embox-tools README
2+
3+
## Working with Markdown
4+
5+
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
6+
7+
* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux).
8+
* Toggle preview (`Shift+Cmd+V` on macOS or `Shift+Ctrl+V` on Windows and Linux).
9+
* Press `Ctrl+Space` (Windows, Linux, macOS) to see a list of Markdown snippets.
10+
11+
## For more information
12+
13+
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
14+
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
15+
16+
**Enjoy!**

language-configuration.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"comments": {
3+
"lineComment": "//",
4+
"blockComment": [ "/*", "*/" ]
5+
},
6+
"brackets": [
7+
["{", "}"],
8+
["[", "]"],
9+
["(", ")"]
10+
],
11+
"autoClosingPairs": [
12+
{ "open": "{", "close": "}" },
13+
{ "open": "[", "close": "]" },
14+
{ "open": "(", "close": ")" },
15+
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
16+
{ "open": "\"", "close": "\"", "notIn": ["string"] },
17+
{ "open": "`", "close": "`", "notIn": ["string", "comment"] },
18+
{ "open": "/**", "close": " */", "notIn": ["string"] }
19+
],
20+
"autoCloseBefore": ";:.,=}])>` \n\t",
21+
"surroundingPairs": [
22+
["{", "}"],
23+
["[", "]"],
24+
["(", ")"],
25+
["'", "'"],
26+
["\"", "\""],
27+
["`", "`"]
28+
],
29+
"folding": {
30+
"markers": {
31+
"start": "^\\s*//\\s*#?region\\b",
32+
"end": "^\\s*//\\s*#?endregion\\b"
33+
}
34+
},
35+
"wordPattern": "(-?\\d*\\.\\d\\w*)|([^\\`\\~\\!\\@\\#\\%\\^\\&\\*\\(\\)\\-\\=\\+\\[\\{\\]\\}\\\\\\|\\;\\:\\'\\\"\\,\\.\\<\\>\\/\\?\\s]+)",
36+
"indentationRules": {
37+
"increaseIndentPattern": "^((?!.*?\\/\\*).*\\*\/)?\\s*[\\}\\]].*$",
38+
"decreaseIndentPattern": "^((?!\\/\\/).)*(\\{[^}\"'`]*|\\([^)\"'`]*|\\[[^\\]\"'`]*)$"
39+
}
40+
}

package.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"name": "embox-tools",
3+
"publisher": "embox",
4+
"displayName": "Embox Tools",
5+
"description": "",
6+
"version": "0.0.1",
7+
"icon": "res/embox-logo-dark.png",
8+
"engines": {
9+
"vscode": "^1.78.0"
10+
},
11+
"categories": [
12+
"Programming Languages"
13+
],
14+
"contributes": {
15+
"languages": [
16+
{
17+
"id": "embuild",
18+
"icon": {
19+
"dark": "res/embox-logo-dark.png",
20+
"light": "res/embox-logo-light.png"
21+
},
22+
"aliases": [
23+
"Embuild",
24+
"embuild"
25+
],
26+
"extensions": [
27+
".my"
28+
],
29+
"filenames": [
30+
"Mybuild",
31+
"mods.conf"
32+
],
33+
"configuration": "./language-configuration.json"
34+
}
35+
],
36+
"grammars": [
37+
{
38+
"language": "embuild",
39+
"scopeName": "source.embuild",
40+
"path": "./syntaxes/embuild.tmLanguage.json"
41+
}
42+
]
43+
}
44+
}

res/embox-logo-dark.png

6.47 KB
Loading

res/embox-logo-light.png

6.71 KB
Loading

0 commit comments

Comments
 (0)