-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.57 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
{
"name": "file-searcher",
"displayName": "Fast File Picker",
"description": "Searching files on the fly",
"version": "0.0.4",
"publisher": "wwm0609",
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "wwm.quickInput",
"title": "FilePicker: Search Files"
},
{
"command": "wwm.buildFileList",
"title": "FilePicker: Build Search Database"
},
{
"command": "wwm.cancelExcludeDir",
"title": "FilePicker: cancel exclude dirs"
},
{
"command": "wwm.excludeDir",
"title": "FilePicker: exclude dirs"
}
],
"keybindings": [
{
"command": "wwm.quickInput",
"key": "ctrl+p",
"mac": "cmd+p"
}
],
"configuration": {
"type": "object",
"title": "FilePicker",
"properties": {
"FilePicker.excludeDirs": {
"type": "string",
"default": "",
"description": "Specifies the folders that you don't want to be indexed, !!!you have to rebuild the search database manually after changed this!!!\nMultiple dirs are sepearted by ':' letter, e.g. ${workspace}/out:${workspace}/build:/mnt/aosp/cts/:.git\nIt's recommend that you add directories into the exclude list by using the explore context menu that we provided, goto the extension's detail page to take a preview.\nFYI, Hidden files won't be indexed anyway."
},
"FilePicker.showDebugLog": {
"type": "string",
"default": "None",
"enum": [
"None",
"Verbose",
"Debug",
"Info",
"Warning",
"Error"
]
}
}
},
"menus": {
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "wwm.cancelExcludeDir",
"group": "filepicker"
},
{
"when": "explorerResourceIsFolder",
"command": "wwm.excludeDir",
"group": "filepicker"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^10.14.8",
"@types/vscode": "^1.32.0",
"tslint": "^5.16.0",
"typescript": "^3.5.1"
},
"repository": {
"type": "git",
"url": "https://github.com/wwm0609/quickfilepicker"
},
"dependencies": {
"readdirp": "^3.0.2"
}
}