forked from dbankier/vscode-quick-select
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (65 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (65 loc) · 3.04 KB
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
{
"name": "vscode-quick-select",
"displayName": "Quick and Simple Text Selection",
"description": "Jump to select between quote, brackets, tags, etc",
"version": "0.2.4",
"publisher": "dbankier",
"engines": {
"vscode": "^1.0.3"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.goToDeclaration2",
"onCommand:extension.selectGroup",
"onCommand:extension.expandLineSelection2",
"onCommand:extension.format2",
"onCommand:extension.copy_no_selection",
"onCommand:extension.cut_no_selection",
"onCommand:extension.moveLinesDownAction2",
"onCommand:extension.moveLinesUpAction2",
"onCommand:extension.cursorDown2",
"onCommand:extension.cursorUp2",
"onCommand:extension.selectDoubleQuote",
"onCommand:extension.selectDoubleQuoteBack",
"onCommand:extension.selectEitherQuote",
"onCommand:extension.selectEitherQuoteBack",
"onCommand:extension.selectParenthesis",
"onCommand:extension.selectParenthesisBack",
"onCommand:extension.selectSquareBrackets",
"onCommand:extension.selectSquareBracketsBack",
"onCommand:extension.selectCurlyBrackets",
"onCommand:extension.selectCurlyBracketsBack"
],
"main": "./out/src/extension",
"contributes": {
"keybindings": [
{"key": "ctrl+0", "command": "extension.selectCurlyBrackets", "when" : "editorTextFocus"},
{"key": "ctrl+shift+0", "command": "extension.selectCurlyBracketsBack", "when" : "editorTextFocus"},
{"key": "ctrl+9","command": "extension.selectParenthesis", "when" : "editorTextFocus"},
{"key": "ctrl+shift+9","command": "extension.selectParenthesisBack", "when" : "editorTextFocus"},
{"key": "ctrl+8", "command": "extension.selectSquareBrackets", "when" : "editorTextFocus"},
{"key": "ctrl+shift+8", "command": "extension.selectSquareBracketsBack", "when" : "editorTextFocus"},
{"key": "ctrl+7", "command": "extension.selectDoubleQuote", "when" : "editorTextFocus"},
{"key": "ctrl+shift+7", "command": "extension.selectDoubleQuoteBack", "when" : "editorTextFocus"},
{"key": "ctrl+5", "command": "extension.selectGroup"},
{"key": "f12", "command": "extension.format2"},
{"key": "ctrl+c", "command": "extension.copy_no_selection", "when": "editorTextFocus && !editorReadonly && !editorHasSelection"},
{"key": "ctrl+x", "command": "extension.cut_no_selection", "when": "editorTextFocus && !editorReadonly && !editorHasSelection"},
{"key": "f4", "command": "extension.goToDeclaration2", "when": "editorHasDefinitionProvider && !isInEmbeddedEditor" },
{"key" : "alt+up", "command" : "extension.moveLinesUpAction2", "when" : "editorTextFocus && !editorReadonly"},
{"key" : "alt+down", "command" : "extension.moveLinesDownAction2", "when" : "editorTextFocus && !editorReadonly"}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"@types/node": "^6.0.40"
}
}