-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
85 lines (85 loc) · 2.67 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
{
"name": "vscode-subword-navigation",
"version": "1.2.0",
"publisher": "ow",
"displayName": "Subword Navigation",
"description": "The missing code navigation feature.",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#efedf9",
"theme": "light"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ow--/vscode-subword-navigation.git"
},
"bugs": {
"url": "https://github.com/ow--/vscode-subword-navigation/issues"
},
"engines": {
"vscode": "0.10.x"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:subwordNavigation.cursorSubwordLeft",
"onCommand:subwordNavigation.cursorSubwordRight",
"onCommand:subwordNavigation.cursorSubwordLeftSelect",
"onCommand:subwordNavigation.cursorSubwordRightSelect",
"onCommand:subwordNavigation.deleteSubwordLeft",
"onCommand:subwordNavigation.deleteSubwordRight"
],
"main": "./out/extension",
"contributes": {
"keybindings": [
{
"command": "subwordNavigation.cursorSubwordRight",
"key": "alt+right",
"mac": "ctrl+right",
"when": "editorTextFocus"
},
{
"command": "subwordNavigation.cursorSubwordRightSelect",
"key": "alt+shift+right",
"mac": "ctrl+shift+right",
"when": "editorTextFocus"
},
{
"command": "subwordNavigation.cursorSubwordLeft",
"key": "alt+left",
"mac": "ctrl+left",
"when": "editorTextFocus"
},
{
"command": "subwordNavigation.cursorSubwordLeftSelect",
"key": "alt+shift+left",
"mac": "ctrl+shift+left",
"when": "editorTextFocus"
},
{
"command": "subwordNavigation.deleteSubwordLeft",
"key": "alt+backspace",
"mac": "ctrl+backspace",
"when": "editorTextFocus && !editorReadonly"
},
{
"command": "subwordNavigation.deleteSubwordRight",
"key": "alt+delete",
"mac": "ctrl+delete",
"when": "editorTextFocus && !editorReadonly"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^13.11.0",
"@types/vscode": "^1.43.0",
"typescript": "^3.8.3"
}
}