Skip to content

Commit 2d17feb

Browse files
committed
feat: syntax
1 parent eb90549 commit 2d17feb

3 files changed

Lines changed: 2582 additions & 5 deletions

File tree

LICENSE

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
elixir-tools.vscode
2+
3+
MIT License
4+
5+
Copyright © 2023 Mitchell Hanberg
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8+
9+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10+
11+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12+
13+
syntaxes/elixir.json
14+
15+
MIT License
16+
17+
Copyright (c) 2017-2022 The Elixir community
18+
19+
Permission is hereby granted, free of charge, to any person obtaining a copy
20+
of this software and associated documentation files (the "Software"), to deal
21+
in the Software without restriction, including without limitation the rights
22+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
23+
copies of the Software, and to permit persons to whom the Software is
24+
furnished to do so, subject to the following conditions:
25+
26+
The above copyright notice and this permission notice shall be included in all
27+
copies or substantial portions of the Software.
28+
29+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
32+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
34+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
35+
SOFTWARE.

package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "elixir-tools",
2+
"name": "elixir-tools.vscode",
33
"displayName": "elixir-tools.vscode",
44
"description": "Elixir extension for VSCode.",
55
"version": "0.0.1",
66
"engines": {
77
"vscode": "^1.77.0"
88
},
99
"categories": [
10-
"Other"
10+
"Programming"
1111
],
1212
"activationEvents": [],
1313
"main": "./dist/extension.js",
@@ -21,10 +21,12 @@
2121
]
2222
}
2323
],
24-
"commands": [
24+
"commands": [],
25+
"grammars": [
2526
{
26-
"command": "elixir-tools.helloWorld",
27-
"title": "Hello World"
27+
"language": "elixir",
28+
"scopeName": "source.elixir",
29+
"path": "./syntaxes/elixir.json"
2830
}
2931
]
3032
},

0 commit comments

Comments
 (0)