-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
133 lines (133 loc) · 3.51 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
124
125
126
127
128
129
130
131
132
133
{
"name": "vsnetrw",
"version": "0.3.2",
"description": "A vscode split explorer for files",
"publisher": "danprince",
"icon": "icon.png",
"keywords": [
"netrw",
"vim",
"vim-vinegar",
"dired",
"explorer"
],
"main": "extension.js",
"license": "Unlicense",
"repository": "danprince/vsnetrw",
"engines": {
"vscode": "^1.68.0"
},
"scripts": {
"test": "node tests/index.js",
"build": "tsc && vsce package",
"local-install": "yarn build && code --install-extension *.vsix"
},
"activationEvents": [
"onCommand:vsnetrw.open"
],
"contributes": {
"languages": [
{
"id": "vsnetrw",
"filenames": [
"vsnetrw"
],
"configuration": "./language-configuration.json"
}
],
"commands": [
{
"command": "vsnetrw.open",
"title": "Open Explorer",
"category": "vsnetrw"
}
],
"keybindings": [
{
"command": "vsnetrw.open",
"key": "-",
"when": "!activeEditor"
},
{
"command": "vsnetrw.close",
"key": "escape",
"when": "editorTextFocus && editorLangId == vsnetrw && vim.mode =~ /^(?!SearchInProgressMode|CommandlineInProgress).*$/"
},
{
"command": "vsnetrw.openAtCursor",
"key": "enter",
"when": "editorTextFocus && editorLangId == vsnetrw && vim.mode =~ /^(?!SearchInProgressMode|CommandlineInProgress).*$/"
},
{
"command": "vsnetrw.openParent",
"key": "-",
"when": "editorTextFocus && editorLangId == vsnetrw && vim.mode =~ /^(?!SearchInProgressMode|CommandlineInProgress).*$/"
},
{
"command": "vsnetrw.openHome",
"key": "shift+`",
"when": "editorTextFocus && editorLangId == vsnetrw && vim.mode =~ /^(?!SearchInProgressMode|CommandlineInProgress).*$/"
},
{
"command": "vsnetrw.rename",
"key": "shift+r",
"when": "editorTextFocus && editorLangId == vsnetrw && vim.mode =~ /^(?!SearchInProgressMode|CommandlineInProgress).*$/"
},
{
"command": "vsnetrw.delete",
"key": "shift+d",
"when": "editorTextFocus && editorLangId == vsnetrw && vim.mode =~ /^(?!SearchInProgressMode|CommandlineInProgress).*$/"
},
{
"command": "vsnetrw.delete",
"key": "delete",
"when": "editorTextFocus && editorLangId == vsnetrw && vim.mode =~ /^(?!SearchInProgressMode|CommandlineInProgress).*$/"
},
{
"command": "vsnetrw.create",
"key": "shift+5",
"when": "editorTextFocus && editorLangId == vsnetrw && vim.mode =~ /^(?!SearchInProgressMode|CommandlineInProgress).*$/"
},
{
"command": "vsnetrw.createDir",
"key": "d",
"when": "editorTextFocus && editorLangId == vsnetrw && vim.mode =~ /^(?!SearchInProgressMode|CommandlineInProgress).*$/"
},
{
"command": "vsnetrw.refresh",
"key": "ctrl+l",
"when": "editorTextFocus && editorLangId == vsnetrw && vim.mode =~ /^(?!SearchInProgressMode|CommandlineInProgress).*$/"
}
],
"grammars": [
{
"language": "vsnetrw",
"scopeName": "source.vsnetrw",
"path": "./vsnetrw.tmLanguage.json"
}
],
"configurationDefaults": {
"[vsnetrw]": {
"editor.lineNumbers": "off",
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none"
}
}
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/vscode": "^1.68.1",
"@vscode/test-electron": "^2.3.8",
"fast-glob": "^3.2.11",
"mocha": "^10.0.0",
"typescript": "^4.7.4",
"vsce": "^2.9.2"
},
"__metadata": {
"id": "668fbee7-65fc-4157-8c12-f76e3da227fd",
"publisherDisplayName": "Dan Prince",
"publisherId": "4c57e270-dfdc-4cc4-a9a8-3acfd4f15f5b",
"isPreReleaseVersion": false
}
}