-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.39 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
{
"name": "cursor-tools",
"displayName": "Cursor tools",
"description": "Leave anchors in the document and create multiple cursors out of them!",
"version": "2.0.1",
"publisher": "naumovs",
"engines": {
"vscode": "^1.1.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"vscode:prepublish": "node ./node_modules/webpack/bin/webpack.js",
"dev": "node ./node_modules/webpack/bin/webpack.js -w"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/naumovs/vscode-ext-cursor-tools/issues"
},
"homepage": "https://github.com/naumovs/vscode-ext-cursor-tools",
"repository": {
"type": "git",
"url": "https://github.com/naumovs/vscode-ext-cursor-tools.git"
},
"main": "./dist/extension",
"icon": "images/cursor-tools.png",
"contributes": {
"configuration": {
"title": "Cursor tools",
"properties": {
"cursor-tools.subWordNavigation": {
"type": "boolean",
"default": false,
"description": "Enable camelCase navigation with following commands: (cursorWordStartLeft,cursorWordEndRight,cursorWordStartLeftSelect,cursorWordEndRightSelect,deleteWordLeft,deleteWordRight) "
}
}
},
"commands": [
{
"command": "cursorToolsAnchorLeave",
"title": "Cursor tools: Toggle anchor at cursor position"
},
{
"command": "cursorToolsAnchorActivate",
"title": "Cursor tools: Activate cursors at all anchor positions"
},
{
"command": "cursorToolsAnchorClean",
"title": "Cursor tools: Clean all anchors in current document"
}
],
"keybindings": [
{
"command": "cursorToolsAnchorLeave",
"key": "ctrl+alt+down",
"win": "ctrl+win+down",
"when": "editorTextFocus"
},
{
"command": "cursorToolsAnchorActivate",
"key": "ctrl+alt+up",
"win": "ctrl+win+up",
"when": "editorTextFocus"
},
{
"command": "cursorToolsAnchorClean",
"key": "escape",
"when": "editorTextFocus && cursorToolsAnchors"
}
]
},
"devDependencies": {
"vscode": "^1.1.0",
"webpack": "3.2.0"
},
"dependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0"
}
}