-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
106 lines (106 loc) · 2.74 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
{
"name": "select-part-of-word",
"displayName": "Select part of word",
"description": "An extension that allows you to move selection by a word in camel-case string.",
"version": "1.0.1",
"publisher": "mlewand",
"engines": {
"vscode": "^1.9.0"
},
"categories": [
"Other"
],
"icon": "assets/icon.svg",
"activationEvents": [
"onCommand:selectPartOfWord.moveRight",
"onCommand:selectPartOfWord.moveLeft",
"onCommand:selectPartOfWord.selectRight",
"onCommand:selectPartOfWord.selectLeft",
"onCommand:selectPartOfWord.delete",
"onCommand:selectPartOfWord.backspace"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "selectPartOfWord.moveRight",
"title": "Move right by a part of word"
},
{
"command": "selectPartOfWord.moveLeft",
"title": "Move left by a part of word"
},
{
"command": "selectPartOfWord.selectRight",
"title": "Select word on the right"
},
{
"command": "selectPartOfWord.selectLeft",
"title": "Select word on the left"
},
{
"command": "selectPartOfWord.backspace",
"title": "Remove previous part of word"
},
{
"command": "selectPartOfWord.delete",
"title": "Delete part of word"
}
],
"keybindings": [
{
"command": "selectPartOfWord.moveRight",
"key": "ctrl+alt+right"
},
{
"command": "selectPartOfWord.moveLeft",
"key": "ctrl+alt+left"
},
{
"command": "selectPartOfWord.selectRight",
"key": "ctrl+alt+shift+right"
},
{
"command": "selectPartOfWord.selectLeft",
"key": "ctrl+alt+shift+left"
},
{
"command": "selectPartOfWord.backspace",
"key": "ctrl+alt+backspace"
},
{
"command": "selectPartOfWord.delete",
"key": "ctrl+alt+delete",
"win": "ctrl+alt+shift+delete"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlewand/vscode-select-part-of-word.git"
},
"bugs": {
"url": "https://github.com/mlewand/vscode-select-part-of-word/issues"
},
"homepage": "https://github.com/mlewand/vscode-select-part-of-word#readme",
"keywords": [
"productivity",
"keybindings",
"selection"
],
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"eslint": "^3.6.0",
"mocha": "^2.3.3",
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"vscode-test-content": "^1.1.0",
"vscode-test-get-content": "^2.0.1"
},
"license": "MIT"
}