Skip to content

Commit 5518b86

Browse files
committed
0 parents  commit 5518b86

7 files changed

+1331
-0
lines changed

LICENSE.md

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

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Scala Syntax
2+
3+
This is my Scala syntax for VS Code and it is based on https://github.com/sellmerfud/scala.tmbundle
4+
5+
I decided create a new extension after problems with Scala extension from Iliya Tryapitsin.
6+
7+
## Features
8+
9+
Only scala syntax.
10+
11+
## Requirements
12+
13+
No requirements.
14+
15+
## License
16+
[MIT](LICENSE)
17+
18+
-----------------------------------------------------------------------------------------------------------

images/smooth-spiral.png

12.7 KB
Loading

language-configuration.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"comments": {
3+
// symbol used for single line comment. Remove this entry if your language does not support line comments
4+
"lineComment": "//",
5+
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
6+
"blockComment": [ "/*", "*/" ]
7+
},
8+
// symbols used as brackets
9+
"brackets": [
10+
["{", "}"],
11+
["[", "]"],
12+
["(", ")"],
13+
["'{", "}"],
14+
["'[", "]"],
15+
["'(", ")"]
16+
],
17+
// symbols that are auto closed when typing
18+
"autoClosingPairs": [
19+
["{", "}"],
20+
["[", "]"],
21+
["(", ")"],
22+
["\"", "\""],
23+
["'", "'"]
24+
],
25+
// symbols that that can be used to surround a selection
26+
"surroundingPairs": [
27+
["{", "}"],
28+
["[", "]"],
29+
["(", ")"],
30+
["\"", "\""],
31+
["'", "'"]
32+
]
33+
}

package.json

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"name": "scala",
3+
"displayName": "Scala Syntax",
4+
"description": "Scala Syntax",
5+
"version": "0.0.3",
6+
"publisher": "Nicolas Stucki",
7+
"license": "SEE LICENSE IN LICENSE.md",
8+
"engines": {
9+
"vscode": "^1.5.0"
10+
},
11+
"homepage": "https://github.com/scala/vscode-scala-syntax/blob/master/README.md",
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/scala/vscode-scala-syntax.git"
15+
},
16+
"icon": "images/smooth-spiral.png",
17+
"categories": [
18+
"Languages"
19+
],
20+
"contributes": {
21+
"languages": [
22+
{
23+
"id": "scala",
24+
"aliases": [
25+
"Scala",
26+
"scala"
27+
],
28+
"extensions": [
29+
".scala",
30+
".sbt"
31+
],
32+
"configuration": "./language-configuration.json"
33+
}
34+
],
35+
"grammars": [
36+
{
37+
"language": "scala",
38+
"scopeName": "source.scala",
39+
"path": "./syntaxes/Scala.tmLanguage"
40+
}
41+
]
42+
}
43+
}

0 commit comments

Comments
 (0)