Minecraft3193092 commited on
Commit
634095c
1 Parent(s): 69370b1

Upload 2 files

Browse files
vscode_mcpy_extension/language-configuration.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "comments": {
3
+ "lineComment": "#"
4
+ },
5
+ "brackets": [
6
+ [
7
+ "[",
8
+ "]"
9
+ ],
10
+ ],
11
+ "autoClosingPairs": [
12
+ {
13
+ "open": "\"",
14
+ "close": "\"",
15
+ "notIn": ["string"]
16
+ },
17
+ {
18
+ "open": "[",
19
+ "close": "]",
20
+ "notIn": ["comment"]
21
+ },
22
+ ],
23
+ "surroundingPairs": [
24
+ [
25
+ "\"",
26
+ "\""
27
+ ],
28
+ [
29
+ "[",
30
+ "]"
31
+ ],
32
+ ]
33
+ }
vscode_mcpy_extension/package.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "mcpy",
3
+ "displayName": "MCPY",
4
+ "description": "Syntax highlighting for MCPY data files",
5
+ "categories": [
6
+ "Programming Languages"
7
+ ],
8
+ "publisher": "obiwac",
9
+ "author": {
10
+ "name": "obiwac"
11
+ },
12
+ "homepage": "https://github.com/obiwac/python-minecraft-clone",
13
+ "version": "0.0.1",
14
+ "engines": {
15
+ "vscode": "^1.22.0"
16
+ },
17
+ "contributes": {
18
+ "languages": [{
19
+ "id": "mcpy_blocks",
20
+ "aliases": [
21
+ "MCPY Blocks"
22
+ ],
23
+ "filenames": [
24
+ "blocks.mcpy"
25
+ ],
26
+ "configuration": "./language-configuration.json"
27
+ }],
28
+ "grammars": [
29
+ {
30
+ "language": "mcpy_blocks",
31
+ "scopeName": "source.mcpy_blocks",
32
+ "path": "./syntaxes/mcpy_blocks.tmLanguage.json"
33
+ }
34
+ ]
35
+ }
36
+ }