-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 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
{
"name": "ctagsymbols",
"displayName": "CTags Workspace Symbol Provider",
"description": "A bare-bones workspace symbol provider for ctags.",
"version": "0.3.0",
"publisher": "valderman",
"icon": "logo.png",
"engines": {
"vscode": "^1.15.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valderman/ctagsymbols.git"
},
"author": "Anton Ekblad",
"license": "MIT",
"bugs": {
"url": "https://github.com/valderman/ctagsymbols/issues"
},
"homepage": "https://github.com/valderman/ctagsymbols",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"commands": [{
"command": "ctagsymbols.regenerateTags",
"title": "Regenerate CTags"
}],
"configuration": {
"type": "object",
"title": "CTags Workspace Symbol Provider Configuration",
"properties": {
"ctagsymbols.tagsFileName": {
"type": "string",
"default": "tags",
"description": "Path of the file to search for tags, relative to the project root."
},
"ctagsymbols.hideDuplicateTags": {
"type": "boolean",
"default": true,
"description": "When there are multiple identical tags in the same source file, only display the first one. Changes to this setting take effect the next time the tags file is updated or the extension is reloaded."
},
"ctagsymbols.maxNumberOfSymbols": {
"type": ["number", "null"],
"default": null,
"description": "Never show more than this many tags, regardless of the number of matches."
},
"ctagsymbols.minQueryLength": {
"type": ["number", "null"],
"default": null,
"description": "Only process searches of at least this many characters. May help performance for large code bases."
},
"ctagsymbols.regenerateCommand": {
"type": "string",
"default": "ctags -f \"${tagsFile}\" -R \"${workspaceFolder}\"",
"description": "Command to regenerate the CTags file for each workspace root folder. ${tagsFile} and ${workspaceFolder} are replaced with the full paths of the tags file being generated and the workspace folder tags are being generated for respectively."
},
"ctagsymbols.regenerateOnSave": {
"type": "boolean",
"default": false,
"description": "Should tags files be regenerated whenever a file is saved?"
}
}
}
},
"scripts": {},
"devDependencies": {
"@types/node": "^6.14.3",
"vscode": "^1.1.29"
},
"dependencies": {
"vsce": "^1.77.0"
}
}