-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
241 lines (241 loc) · 6.35 KB
/
package.json
File metadata and controls
241 lines (241 loc) · 6.35 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
{
"name": "vertical-limit",
"displayName": "Vertical Limit",
"description": "Navigate cursors semantically up and down, select and modify text with powerful commands optimized for the use with multi cursors.",
"version": "1.9.2",
"engines": {
"vscode": "^1.116.0"
},
"categories": [
"Other"
],
"publisher": "generik",
"repository": {
"type": "git",
"url": "https://github.com/generikvault/vertical-limit"
},
"icon": "icon.png",
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vertical-limit.moveCursorFirstBlockLine",
"title": "Move cursor to first line of the current block"
},
{
"command": "vertical-limit.moveCursorLastBlockLine",
"title": "Move cursor to last line of the current block"
},
{
"command": "vertical-limit.selectUntilBlockFirstLine",
"title": "Select until first line of the current block"
},
{
"command": "vertical-limit.selectUntilBlockLastLine",
"title": "Select until last line of the current block"
},
{
"command": "vertical-limit.insertCursorsUntilFirstBlockLine",
"title": "Insert cursors until first line of the current block"
},
{
"command": "vertical-limit.insertCursorsUntilLastBlockLine",
"title": "Insert cursors until last line of the current block"
},
{
"command": "vertical-limit.moveCursorToBlockBegin",
"title": "Move cursor to begin of the current block"
},
{
"command": "vertical-limit.moveCursorToBlockEnd",
"title": "Move cursor to end of the current block"
},
{
"command": "vertical-limit.selectUntilBlockBegin",
"title": "Select until first begin of the current block"
},
{
"command": "vertical-limit.selectUntilBlockEnd",
"title": "Select until last end of the current block"
},
{
"command": "vertical-limit.enumerate",
"title": "Enumerate"
},
{
"command": "vertical-limit.moveSelectionToNewFile",
"title": "Moves the current selection to a new file"
},
{
"command": "vertical-limit.moveUnsavedFileToClipboard",
"title": "Moves the content of the current and unsaved file into the clipboard and closes the file"
},
{
"command": "vertical-limit.compressLines",
"title": "Compress following lines with the same prefix into a single line"
},
{
"command": "vertical-limit.uncompressLines",
"title": "Uncompress lines matching the prefix pattern into a line for each segment"
},
{
"command": "vertical-limit.insertAsColumn",
"title": "Insert clipboard as column"
}
],
"keybindings": [
{
"command": "vertical-limit.moveCursorFirstBlockLine",
"key": "ctrl+up",
"when": "editorTextFocus"
},
{
"command": "vertical-limit.moveCursorLastBlockLine",
"key": "ctrl+down",
"when": "editorTextFocus"
},
{
"command": "vertical-limit.selectUntilBlockFirstLine",
"key": "ctrl+shift+up",
"when": "editorTextFocus"
},
{
"command": "vertical-limit.selectUntilBlockLastLine",
"key": "ctrl+shift+down",
"when": "editorTextFocus"
},
{
"command": "vertical-limit.moveCursorToBlockBegin",
"key": "ctrl+home",
"when": "editorTextFocus"
},
{
"command": "vertical-limit.moveCursorToBlockEnd",
"key": "ctrl+end",
"when": "editorTextFocus"
},
{
"command": "vertical-limit.selectUntilBlockBegin",
"key": "ctrl+shift+home",
"when": "editorTextFocus"
},
{
"command": "vertical-limit.selectUntilBlockEnd",
"key": "ctrl+shift+end",
"when": "editorTextFocus"
},
{
"command": "vertical-limit.enumerate",
"key": "alt+e",
"when": "editorTextFocus && !editorReadonly"
},
{
"command": "vertical-limit.moveSelectionToNewFile",
"key": "alt+n",
"when": "editorTextFocus && !editorReadonly"
},
{
"command": "vertical-limit.moveUnsavedFileToClipboard",
"key": "alt+x",
"when": "editorTextFocus && resourceScheme == untitled && !editorReadonly"
},
{
"command": "vertical-limit.insertAsColumn",
"key": "alt+v",
"when": "editorTextFocus && !editorReadonly"
}
],
"menus": {
"commandPalette": [
{
"command": "vertical-limit.moveCursorFirstBlockLine",
"when": "editorIsOpen"
},
{
"command": "vertical-limit.moveCursorLastBlockLine",
"when": "editorIsOpen"
},
{
"command": "vertical-limit.selectUntilBlockFirstLine",
"when": "editorIsOpen"
},
{
"command": "vertical-limit.selectUntilBlockLastLine",
"when": "editorIsOpen"
},
{
"command": "vertical-limit.expandBlockSelection",
"when": "editorIsOpen"
},
{
"command": "vertical-limit.insertCursorsUntilFirstBlockLine",
"when": "editorIsOpen"
},
{
"command": "vertical-limit.insertCursorsUntilLastBlockLine",
"when": "editorIsOpen"
},
{
"command": "vertical-limit.enumerate",
"when": "editorIsOpen && !editorReadonly"
},
{
"command": "vertical-limit.moveSelectionToNewFile",
"when": "editorIsOpen && !editorReadonly"
},
{
"command": "vertical-limit.moveUnsavedFileToClipboard",
"when": "editorIsOpen && resourceScheme == untitled && !editorReadonly"
},
{
"command": "vertical-limit.compressLines",
"when": "editorIsOpen && !editorReadonly"
},
{
"command": "vertical-limit.uncompressLines",
"when": "editorIsOpen && !editorReadonly"
},
{
"command": "vertical-limit.insertAsColumn",
"when": "editorIsOpen && !editorReadonly"
}
]
},
"configuration": {
"type": "object",
"title": "Vertical Limit",
"properties": {
"vertical-limit.blockPrefixIndicators": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "sdfghjkl",
"scope": "resource"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"@types/vscode": "^1.116.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@vscode/test-electron": "^2.5.2",
"eslint": "^10.2.0",
"glob": "^13.0.6",
"mocha": "^11.7.5",
"typescript": "^6.0.2"
}
}