-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (115 loc) · 2.63 KB
/
package.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "qb64-language",
"displayName": "QB64/QB64PE",
"description": "Syntax highlighting for QB64/QB64PE and related Basic dialects (.bas, .bi, .bm, .inc files)",
"version": "1.1.3",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages"
],
"license": "MIT",
"publisher": "GeorgeMcGinn",
"keywords": [
"QB64",
"QB64PE",
"QB64 PE",
"QB64PE Phoenix Edition",
"QBasic",
"BASIC"
],
"repository": {
"type": "git",
"url": "https://github.com/GeorgeMcGinn/QB64-QB64pe-VSCode-Extension"
},
"icon": "images/qb64.ico",
"files": [
"images/**/*.png",
"extension.js",
"qb64-language-configuration.json",
"syntaxes/**",
"themes/**"
],
"main": "extension.js",
"activationEvents": ["onLanguage:qb64", "workspaceContains:**/*.{bas,bi,bm,inc}"],
"contributes": {
"languages": [
{
"id": "qb64",
"aliases": ["QB64", "QB64pe", "QBasic"],
"extensions": [".bas", ".bi", ".bm", ".inc"],
"configuration": "./qb64-language-configuration.json"
}
],
"grammars": [
{
"language": "qb64",
"scopeName": "source.basic.qb64",
"path": "./syntaxes/qb64.tmlanguage.json"
}
],
"themes": [
{
"label": "QB64 Theme",
"uiTheme": "vs-dark",
"path": "./themes/qb64-color-theme.json"
}
],
"commands": [
{
"command": "basic.run",
"title": "Run BASIC Program",
"category": "BASIC"
},
{
"command": "basic.runQB64",
"title": "Run QB64",
"category": "BASIC"
},
{
"command": "basic.runQB64pe",
"title": "Run QB64pe",
"category": "BASIC"
},
{
"command": "basic.runWithSelection",
"title": "Run with Selection",
"category": "BASIC"
}
],
"menus": {
"editor/title": [
{
"command": "basic.runQB64",
"group": "navigation",
"when": "resourceLangId == qb64"
},
{
"command": "basic.runQB64pe",
"group": "navigation",
"when": "resourceLangId == qb64"
}
]
}
},
"configuration": {
"title": "QB64/QB64pe BASIC Extension",
"properties": {
"basic.defaultCompiler": {
"type": "string",
"default": "QB64pe",
"enum": ["QB64", "QB64pe"],
"description": "Select the default compiler for F5 quick run"
}
}
},
"keybindings": [
{
"command": "basic.run",
"key": "ctrl+F5",
"when": "editorLangId == qb64",
"mac": "cmd+F5"
}
]
}