-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
103 lines (103 loc) · 2.58 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
{
"name": "ctagsx",
"displayName": "ctagsx",
"description": "A fast, cross-platform and working ctags implementation",
"version": "1.2.1",
"publisher": "jtanx",
"icon": "img/logo.png",
"engines": {
"vscode": "^1.63.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jtanx/ctagsx.git"
},
"author": "Jeremy Tan",
"license": "MIT",
"bugs": {
"url": "https://github.com/jtanx/ctagsx/issues"
},
"homepage": "https://github.com/jtanx/ctagsx",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"configuration": {
"type": "object",
"title": "ctagsx configuration",
"properties": {
"ctagsx.openAsPreview": {
"type": "boolean",
"default": false,
"description": "Open navigated to files in preview mode"
},
"ctagsx.disableDefinitionProvider": {
"type": "boolean",
"default": false,
"description": "Disable ctagsx from providing symbol definitions to VSCode's in-built definition navigator"
}
}
},
"commands": [
{
"command": "extension.findCTags",
"title": "ctagsx: Navigate to definition"
},
{
"command": "extension.findCTagsPrompt",
"title": "ctagsx: Search for definition"
},
{
"command": "extension.ctagsJumpBack",
"title": "ctagsx: Jump back to previous location from navigation"
},
{
"command": "extension.ctagsClearJumpStack",
"title": "ctagsx: Clear navigation history"
},
{
"command": "extension.createTerminal",
"title": "ctagsx: Create a terminal in the workspace of the active document"
}
],
"keybindings": [
{
"command": "extension.findCTags",
"key": "ctrl+t",
"mac": "cmd+t",
"when": "editorTextFocus"
},
{
"command": "extension.findCTagsPrompt",
"key": "ctrl+alt+t",
"mac": "cmt+alt+t",
"when": "editorTextFocus"
},
{
"command": "extension.ctagsJumpBack",
"key": "alt+t",
"when": "editorTextFocus"
}
]
},
"scripts": {
"test": "node ./node_modules/@vscode/test-electron/out/runTest.js"
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^6.14.3",
"@types/vscode": "^1.63.2",
"@vscode/test-electron": "^2.1.1",
"eslint": "^8.8.0",
"mocha": "^9.2.0",
"typescript": "^2.9.2"
},
"dependencies": {
"ctagz": "^0.1.0",
"line-reader": "^0.4.0"
}
}