-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.35 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "modern-tcl-tk",
"displayName": "Modern Tcl/Tk",
"description": "Modern Tcl/Tk Language support for VS Code",
"version": "0.0.1",
"publisher": "Maksym Zinchenko",
"icon": "images/tcl_logo.png",
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/Siqsuruq/Tcl-VSCode"
},
"contributes": {
"themes": [{
"label": "Tcl/Tk Theme",
"uiTheme": "vs-dark",
"path": "./TclCustomTheme.json"
}],
"languages": [{
"id": "tcl",
"aliases": ["Tcl", "tcl"],
"extensions": [".tcl",".tk",".tclapp",".tkapp",".tm",".tclclass",".tclobj",".adp"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "tcl",
"scopeName": "source.tcl",
"path": "./syntaxes/tcl.tmLanguage.json"
}],
"snippets": [
{
"language": "tcl",
"path": "./snippets/tcl_9_general.json"
},
{
"language": "tcl",
"path": "./snippets/tcl_naviserver.json"
},
{
"language": "tcl",
"path": "./snippets/tcl_nx.json"
},
{
"language": "tcl",
"path": "./snippets/tcl_oo.json"
},
{
"language": "tcl",
"path": "./snippets/tk_9.json"
}
]
}
}