Skip to content

Commit c4cf428

Browse files
committed
feat(KEL): Add initial KEL support
Signed-off-by: Gordon Smith <[email protected]>
1 parent 0e8939f commit c4cf428

37 files changed

+23503
-3580
lines changed

.gitignore

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
dist
2-
lib*
3-
node_modules
4-
types
1+
/dist
2+
/grammar
3+
/lib*
4+
/node_modules
5+
/types
56
.vscode-test
67
*.vsix
7-
*.log
8+
*.log
9+
*.interp
10+
*.tokens

.vscode/launch.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"${workspaceRoot}/dist/*.js"
2525
],
2626
"stopOnEntry": false,
27-
"sourceMaps": true
27+
"sourceMaps": true,
28+
"internalConsoleOptions": "neverOpen"
2829
},
2930
{
3031
"name": "Launch Server Adapter",

.vscodeignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
!.vscodeignore
1212
!CHANGELOG.md
1313
!ecl.configuration.json
14+
!kel.configuration.json
1415
!LICENSE
1516
!package.json
1617
!README.md

kel.configuration.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"comments": {
3+
"lineComment": "//",
4+
"blockComment": [ "/*", "*/" ]
5+
},
6+
"brackets": [
7+
["{", "}"],
8+
["[", "]"],
9+
["(", ")"]
10+
],
11+
"autoClosingPairs": [
12+
["{", "}"],
13+
["[", "]"],
14+
["(", ")"],
15+
["\"", "\""],
16+
["'", "'"]
17+
],
18+
"surroundingPairs": [
19+
["{", "}"],
20+
["[", "]"],
21+
["(", ")"],
22+
["\"", "\""],
23+
["'", "'"]
24+
]
25+
}

0 commit comments

Comments
 (0)