forked from jhhtaylor/tabstronaut
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
577 lines (577 loc) · 16.3 KB
/
package.json
File metadata and controls
577 lines (577 loc) · 16.3 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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
{
"name": "tabstronaut",
"displayName": "Tabstronaut - Tab Groups",
"publisher": "4of9",
"author": {
"name": "Jon Taylor",
"email": "jhhtaylor@gmail.com"
},
"description": "Save and restore groups of editor tabs in VS Code (forked)",
"icon": "media/Tabstronaut.png",
"galleryBanner": {
"color": "#FF914D",
"theme": "dark"
},
"homepage": "https://github.com/jhhtaylor/tabstronaut/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/jhhtaylor/tabstronaut"
},
"bugs": {
"url": "https://github.com/jhhtaylor/tabstronaut/issues",
"email": "jhhtaylor@gmail.com"
},
"sponsor": {
"url": "https://www.buymeacoffee.com/jhhtaylor"
},
"version": "0.0.0",
"engines": {
"vscode": "^1.99.0"
},
"categories": [
"Other"
],
"keywords": [
"Tabs",
"Organization",
"Groups",
"Workspaces",
"Efficiency",
"Productivity"
],
"activationEvents": [
"onFileSystem:*"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "tabstronaut.openTabGroupContextMenu",
"category": "Tabstronaut",
"title": "Add to Tab Group...",
"icon": "$(plus)"
},
{
"command": "tabstronaut.openTabGroupContextMenuFromEditorTabRightClick",
"category": "Tabstronaut",
"title": "Add to Tab Group..."
},
{
"command": "tabstronaut.collapseAll",
"category": "Tabstronaut",
"title": "Collapse all Tab Groups",
"icon": "$(collapse-all)"
},
{
"command": "tabstronaut.expandAll",
"category": "Tabstronaut",
"title": "Expand all Tab Groups",
"icon": "$(expand-all)"
},
{
"command": "tabstronaut.confirmCloseAllEditors",
"category": "Tabstronaut",
"title": "Close all open editor tabs",
"icon": "$(chrome-close)"
},
{
"command": "tabstronaut.restoreAllTabsInGroup",
"category": "Tabstronaut",
"title": "Restore Tab Group",
"icon": "$(debug-continue-small)"
},
{
"command": "tabstronaut.editTabGroup",
"category": "Tabstronaut",
"title": "Edit Tab Group...",
"icon": "$(pencil)"
},
{
"command": "tabstronaut.sortTabGroup",
"category": "Tabstronaut",
"title": "Sort Tab Group...",
"icon": "$(sort-precedence)"
},
{
"command": "tabstronaut.filterTabGroups",
"category": "Tabstronaut",
"title": " Filter Tab Groups by Name...",
"icon": "$(filter)"
},
{
"command": "tabstronaut.filterTabGroupsActive",
"category": "Tabstronaut",
"title": "✓ Filter Tab Groups by Name...",
"icon": "$(filter-filled)"
},
{
"command": "tabstronaut.removeTabGroup",
"category": "Tabstronaut",
"title": "Remove Tab Group",
"icon": "$(trash)"
},
{
"command": "tabstronaut.previewSpecificTab",
"category": "Tabstronaut",
"title": "Preview Tab",
"icon": "$(debug-continue-small)"
},
{
"command": "tabstronaut.restoreSpecificTab",
"category": "Tabstronaut",
"title": "Restore Tab",
"icon": "$(debug-continue-small)"
},
{
"command": "tabstronaut.removeSpecificTab",
"category": "Tabstronaut",
"title": "Remove Tab from Tab Group",
"icon": "$(trash)"
},
{
"command": "tabstronaut.addCurrentTabToGroup",
"category": "Tabstronaut",
"title": "Add current tab to Tab Group",
"icon": "$(plus)"
},
{
"command": "tabstronaut.showMoreOptions",
"category": "Tabstronaut",
"title": "More Options...",
"icon": "$(more)"
},
{
"command": "tabstronaut.exportTabGroups",
"category": "Tabstronaut",
"title": "Export Tab Groups to JSON"
},
{
"command": "tabstronaut.importTabGroups",
"category": "Tabstronaut",
"title": "Import Tab Groups from JSON"
},
{
"command": "tabstronaut.addFilesToGroup",
"category": "Tabstronaut",
"title": "Add to Tab Group..."
},
{
"command": "tabstronaut.addAllOpenTabsToGroup",
"category": "Tabstronaut",
"title": "Add all tabs to Tab Group",
"icon": "$(new-folder)"
},
{
"command": "tabstronaut.undoDelete",
"title": "Undo Delete",
"category": "Tabstronaut",
"icon": "$(discard)"
},
{
"command": "tabstronaut.undoCloseEditors",
"title": "Undo Close Editors",
"category": "Tabstronaut",
"icon": "$(discard)"
},
{
"command": "tabstronaut.addAllToNewGroup",
"category": "Tabstronaut",
"title": "Add all to New Tab Group",
"icon": "$(new-folder)"
},
{
"command": "tabstronaut.restoreTabsByGroupNumber",
"category": "Tabstronaut",
"title": "Restore Tabs by Group Number",
"icon": "$(debug-continue-small)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "tabstronaut",
"title": "Tabstronaut",
"icon": "media/icon.svg"
}
]
},
"views": {
"tabstronaut": [
{
"id": "tabstronaut",
"name": "Tab Groups"
},
{
"id": "tabstronautUngrouped",
"name": "Ungrouped Tabs",
"visibility": "collapsed",
"priority": 100
}
]
},
"menus": {
"view/title": [
{
"command": "tabstronaut.undoDelete",
"when": "view == tabstronaut && tabstronaut:canUndoDelete",
"group": "navigation@-1"
},
{
"command": "tabstronaut.undoCloseEditors",
"when": "view == tabstronaut && tabstronaut:canUndoClose",
"group": "navigation@-1"
},
{
"command": "tabstronaut.openTabGroupContextMenu",
"when": "view == tabstronaut",
"group": "navigation@0"
},
{
"command": "tabstronaut.collapseAll",
"when": "view == tabstronaut && !tabstronaut:allCollapsed",
"group": "navigation@1"
},
{
"command": "tabstronaut.expandAll",
"when": "view == tabstronaut && tabstronaut:allCollapsed",
"group": "navigation@1"
},
{
"command": "tabstronaut.filterTabGroups",
"when": "view == tabstronaut && !tabstronaut:hasGroupFilter",
"group": "navigation@2"
},
{
"command": "tabstronaut.filterTabGroupsActive",
"when": "view == tabstronaut && tabstronaut:hasGroupFilter",
"group": "navigation@2"
},
{
"command": "tabstronaut.confirmCloseAllEditors",
"when": "view == tabstronaut",
"group": "navigation@3"
},
{
"command": "tabstronaut.showMoreOptions",
"when": "view == tabstronaut",
"group": "navigation@4"
}
],
"explorer/context": [
{
"command": "tabstronaut.addFilesToGroup",
"when": "resourceLangId != ''",
"group": "3_tabstronaut"
}
],
"editor/title/context": [
{
"command": "tabstronaut.openTabGroupContextMenuFromEditorTabRightClick",
"group": "10_tabstronaut"
}
],
"editor/title": [
{
"command": "tabstronaut.openTabGroupContextMenu"
}
],
"view/item/context": [
{
"command": "tabstronaut.addCurrentTabToGroup",
"when": "view == tabstronaut && viewItem == group",
"group": "inline@0"
},
{
"command": "tabstronaut.addAllOpenTabsToGroup",
"when": "view == tabstronaut && viewItem == group",
"group": "inline@1"
},
{
"command": "tabstronaut.restoreAllTabsInGroup",
"when": "view == tabstronaut && viewItem == group",
"group": "inline@2"
},
{
"command": "tabstronaut.sortTabGroup",
"when": "view == tabstronaut && viewItem == group",
"group": "inline@3"
},
{
"command": "tabstronaut.editTabGroup",
"when": "view == tabstronaut && viewItem == group",
"group": "inline@4"
},
{
"command": "tabstronaut.removeTabGroup",
"when": "view == tabstronaut && viewItem == group",
"group": "inline@5"
},
{
"command": "tabstronaut.restoreSpecificTab",
"when": "view == tabstronaut && viewItem == tab",
"group": "inline@0"
},
{
"command": "tabstronaut.removeSpecificTab",
"when": "view == tabstronaut && viewItem == tab",
"group": "inline@1"
}
],
"commandPalette": [
{
"command": "tabstronaut.openTabGroupContextMenu"
},
{
"command": "tabstronaut.openTabGroupContextMenuFromEditorTabRightClick",
"when": "false"
},
{
"command": "tabstronaut.collapseAll",
"when": "false"
},
{
"command": "tabstronaut.expandAll",
"when": "false"
},
{
"command": "tabstronaut.confirmCloseAllEditors",
"when": "false"
},
{
"command": "tabstronaut.restoreAllTabsInGroup",
"when": "false"
},
{
"command": "tabstronaut.sortTabGroup",
"when": "false"
},
{
"command": "tabstronaut.editTabGroup",
"when": "false"
},
{
"command": "tabstronaut.removeTabGroup",
"when": "false"
},
{
"command": "tabstronaut.previewSpecificTab",
"when": "false"
},
{
"command": "tabstronaut.restoreSpecificTab",
"when": "false"
},
{
"command": "tabstronaut.removeSpecificTab",
"when": "false"
},
{
"command": "tabstronaut.addCurrentTabToGroup",
"when": "false"
},
{
"command": "tabstronaut.showMoreOptions",
"when": "false"
},
{
"command": "tabstronaut.exportTabGroups",
"when": "false"
},
{
"command": "tabstronaut.importTabGroups",
"when": "false"
},
{
"command": "tabstronaut.addFilesToGroup",
"when": "false"
},
{
"command": "tabstronaut.addAllOpenTabsToGroup",
"when": "false"
},
{
"command": "tabstronaut.undoDelete",
"when": "false"
},
{
"command": "tabstronaut.addAllToNewGroup",
"when": "false"
},
{
"command": "tabstronaut.restoreTabsByGroupNumber",
"when": "false"
},
{
"command": "tabstronaut.filterTabGroups",
"when": "false"
},
{
"command": "tabstronaut.filterTabGroupsActive",
"when": "false"
},
{
"command": "tabstronaut.undoCloseEditors",
"when": "false"
}
]
},
"keybindings": [
{
"command": "tabstronaut.openTabGroupContextMenu",
"key": "ctrl+alt+a",
"mac": "cmd+alt+a"
},
{
"command": "tabstronaut.restoreTabsByGroupNumber",
"key": "ctrl+alt+1",
"args": [
1
]
},
{
"command": "tabstronaut.restoreTabsByGroupNumber",
"key": "ctrl+alt+2",
"args": [
2
]
},
{
"command": "tabstronaut.restoreTabsByGroupNumber",
"key": "ctrl+alt+3",
"args": [
3
]
},
{
"command": "tabstronaut.restoreTabsByGroupNumber",
"key": "ctrl+alt+4",
"args": [
4
]
},
{
"command": "tabstronaut.restoreTabsByGroupNumber",
"key": "ctrl+alt+5",
"args": [
5
]
},
{
"command": "tabstronaut.restoreTabsByGroupNumber",
"key": "ctrl+alt+6",
"args": [
6
]
},
{
"command": "tabstronaut.restoreTabsByGroupNumber",
"key": "ctrl+alt+7",
"args": [
7
]
},
{
"command": "tabstronaut.restoreTabsByGroupNumber",
"key": "ctrl+alt+8",
"args": [
8
]
},
{
"command": "tabstronaut.restoreTabsByGroupNumber",
"key": "ctrl+alt+9",
"args": [
9
]
}
],
"configuration": {
"title": "Tabstronaut",
"properties": {
"tabstronaut.addPaths": {
"type": "boolean",
"default": true,
"description": "Display file paths as Tab descriptions."
},
"tabstronaut.keybindingOrder": {
"type": "boolean",
"default": true,
"description": "Set key bindings for restoring Tab Groups in descending order (e.g., Group 2 -> ctrl+alt+1, Group 1 -> ctrl+alt+2). If unchecked, bindings will be in ascending order."
},
"tabstronaut.confirmRemoveAndClose": {
"type": "boolean",
"default": true,
"description": "Ask for confirmation before removing Tab Groups or closing all editor tabs."
},
"tabstronaut.moveTabGroupOnTabChange": {
"type": "boolean",
"default": true,
"description": "Move the Tab Group to the top and reset its timestamp when a tab is added, edited or removed."
},
"tabstronaut.autoCloseOnRestore": {
"type": "boolean",
"default": false,
"description": "Close all currently open tabs before restoring a Tab Group for clean context switching. Cannot be used together with Automatically remove closed tabs."
},
"tabstronaut.showConfirmationMessages": {
"type": "boolean",
"default": false,
"description": "Show confirmation messages after adding tabs to groups."
},
"tabstronaut.autoRemoveClosedTabs": {
"type": "boolean",
"default": false,
"description": "Automatically remove closed tabs from any Tab Groups that include them. Cannot be used together with Close tabs before restoring groups. Note: Undo delete will not be available when this setting is enabled."
},
"tabstronaut.promptForGroupDetails": {
"type": "boolean",
"default": false,
"description": "Prompt to name and choose a color for new Tab Groups before creation."
},
"tabstronaut.newTabGroupPosition": {
"type": "string",
"enum": [
"top",
"bottom"
],
"default": "bottom",
"description": "Position for newly created Tab Groups."
},
"tabstronaut.importExportDirectory": {
"type": "string",
"default": "",
"description": "Default directory for importing and exporting Tab Groups. Supports absolute paths (e.g., '/tmp' or 'C:\\Temp') or relative paths from workspace root (e.g., 'tab-groups'). Leave empty to use workspace root (or home directory if no workspace is open)."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "npx webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "24.x",
"@types/vscode": "^1.99.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.33.1",
"@vscode/test-electron": "^2.4.1",
"concurrently": "^9.2.1",
"eslint": "^9.30.1",
"glob": "^11.1.0",
"minimatch": "^10.0.3",
"mocha": "^11.7.1",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.102.0",
"webpack-cli": "^6.0.1"
}
}