This repository was archived by the owner on Sep 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "october-twig",
"displayName": "October Twig",
"description": "Language support for October CMS template file (.htm) syntax.",
"repository": "https://github.com/daftspunk/october-twig",
"version": "1.1.4",
"icon": "vscode/icon.png",
"publisher": "daftspunk",
"engines": {
"vscode": "^1.12.0"
},
"categories": ["Languages"],
"contributes": {
"languages": [{
"id": "october-htm",
"aliases": ["October CMS Template", "octobercms"],
"extensions": [".htm"],
"configuration": "./vscode/lang-config.json"
}, {
"id": "october-twig",
"aliases": ["October CMS Vanilla Twig Syntax"],
"configuration": "./vscode/lang-config-twig.json"
}],
"grammars": [{
"language": "october-htm",
"scopeName": "text.html.octobercms",
"path": "./vscode/october-htm.tmLanguage.json",
"embeddedLanguages": {
"source.ini": "ini",
"source.php": "php",
"text.html.twig.octobercms": "october-twig"
}
}, {
"language": "october-twig",
"scopeName": "text.html.twig.octobercms",
"path": "./vscode/october-twig.tmLanguage"
}]
}
}