-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
160 lines (160 loc) · 6.07 KB
/
package.json
File metadata and controls
160 lines (160 loc) · 6.07 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "vscode-gnu-global",
"displayName": "C/C++ GNU Global",
"description": "Intellisense for C/C++ using GNU Global",
"version": "0.3.5",
"publisher": "jaycetyle",
"preview": true,
"repository": {
"type": "git",
"url": "https://github.com/jaycetyle/vscode-gnu-global/"
},
"icon": "images/icon-256.png",
"engines": {
"vscode": "^1.27.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:cpp",
"onLanguage:c",
"onCommand:extension.showGlobalVersion",
"onCommand:extension.rebuildGtags"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.showGlobalVersion",
"title": "Global: Show GNU Global Version"
},
{
"command": "extension.rebuildGtags",
"title": "Global: Rebuild Gtags Database"
}
],
"configuration": {
"properties": {
"gnuGlobal.autoUpdate": {
"type": [
"string"
],
"enum": [
"Enabled",
"Disabled",
"Default"
],
"default": "Default",
"scope": "resource",
"description": "Controls whether global should automatically update the tags after file saved. \"Default\": disable autoupdate if GTAGS database size is larger than 50MB. It is recommended to disable this feature if the project is too large."
},
"gnuGlobal.completion": {
"type": [
"string"
],
"enum": [
"Enabled",
"Disabled"
],
"default": "Enabled",
"scope": "resource",
"description": "Enable/disable auto-completion feature."
},
"gnuGlobal.gtagsForceCpp": {
"type": [
"string"
],
"enum": [
"Enabled",
"Disabled"
],
"default": "Disabled",
"scope": "resource",
"description": "If this option is enabled, each file whose suffix is \".h\" is treated as a C++ source file. You need to rebuild gtags if you change this configuration."
},
"gnuGlobal.globalExecutable": {
"type": [
"string"
],
"default": "global",
"scope": "machine",
"description": "Specify the path to the global."
},
"gnuGlobal.gtagsExecutable": {
"type": [
"string"
],
"default": "gtags",
"scope": "machine",
"description": "Specify the path to the gtags."
},
"gnuGlobal.libraryPath": {
"type": [
"array"
],
"scope": "resource",
"description": "(Experimental) Used as the path to search for library functions. If the specified tags is not found in the project, this extension also searches in these paths. Please note that 'Rebuild Gtags Database' doesn't rebuild the tag files for these libraries. You need to build tags for them individually."
},
"gnuGlobal.encoding": {
"type": [
"string"
],
"default": "utf-8",
"description": "Specify the encoding of the command line output."
},
"gnuGlobal.objDirPrefix": {
"type": [
"string"
],
"default": "",
"scope": "window",
"description": "If objDirPrefix is set and objDirPrefix directory exists, gtags creates objDirPrefix/project_dir directory and makes tag files in it. Global will also try to search tag files in such directory. Only support UNIX style filesystem. Windows is not supported."
},
"gnuGlobal.gtagSkipSymlink": {
"type": [
"string"
],
"enum": [
"None",
"File",
"Directory",
"All"
],
"default": "None",
"scope": "resource",
"description": "Skip symbolic links while building tag files. Could be None, File, Directory or All. Default is None. (Requires GNU Global 6.6.3)"
},
"gnuGlobal.debugMode": {
"type": [
"string"
],
"enum": [
"Enabled",
"Disabled"
],
"default": "Disabled",
"scope": "window",
"description": "Log more information to debug this extension. Default is Disabled."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.20.10",
"tslint": "^5.20.1",
"typescript": "^3.9.9",
"vscode": "^1.1.37"
},
"dependencies": {
"iconv-lite": "^0.5.2"
}
}