-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
2177 lines (2177 loc) · 69.5 KB
/
Copy pathpackage.json
File metadata and controls
2177 lines (2177 loc) · 69.5 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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "simple-sftp",
"displayName": "Simple SFTP Plus",
"description": "Lightweight SFTP client with port forwarding and cross-device host configuration sync",
"version": "6.36.0",
"publisher": "WangBowen",
"icon": "resources/icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iwangbowen/simple-sftp.git"
},
"keywords": [
"sftp",
"ssh",
"upload",
"remote",
"deploy",
"file transfer"
],
"engines": {
"vscode": "^1.108.1"
},
"categories": [
"Other"
],
"capabilities": {
"virtualWorkspaces": {
"supported": false,
"description": "This extension requires access to the local file system for SSH/SFTP operations and cannot run in virtual workspaces."
}
},
"activationEvents": [
"onFileSystem:sftp"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "simpleSftp",
"title": "Simple SFTP",
"icon": "resources/icon.svg"
}
],
"panel": [
{
"id": "simpleSftpPanel",
"title": "SFTP Browser",
"icon": "$(remote-explorer)"
}
]
},
"resourceLabelFormatters": [
{
"scheme": "sftp",
"formatting": {
"label": "${path}",
"separator": "/",
"workspaceSuffix": "SFTP"
}
}
],
"views": {
"simpleSftp": [
{
"id": "simpleSftp.hosts",
"name": "Hosts"
},
{
"id": "simpleSftp.portForwardings",
"name": "Port Forwardings",
"icon": "$(arrow-both)"
},
{
"id": "simpleSftp.transferQueue",
"name": "Transfer Queue",
"icon": "$(cloud-upload)"
},
{
"id": "simpleSftp.transferHistory",
"name": "Transfer History",
"icon": "$(history)"
},
{
"id": "simpleSftp.deployProfiles",
"name": "Deploy Profiles",
"icon": "$(rocket)"
},
{
"id": "simpleSftp.helpFeedback",
"name": "Help and Feedback",
"icon": "$(question)"
}
],
"simpleSftpPanel": [
{
"type": "webview",
"id": "simpleSftp.dualPanelBrowser",
"name": "File Browser",
"icon": "$(remote-explorer)"
}
]
},
"viewsWelcome": [
{
"view": "simpleSftp.hosts",
"contents": "Welcome to Simple SFTP\n\nNo remote hosts configured yet. Get started by adding your first host to upload and download files via SFTP.\n\n[$(play-circle) Open Walkthrough](command:workbench.action.openWalkthrough?%7B%22category%22%3A%22WangBowen.simple-sftp%23simpleSftp.welcome%22%7D)\n\n[$(add) Add Host](command:simpleSftp.addHost)\n\n[$(cloud-download) Import from SSH Config](command:simpleSftp.importFromSshConfig)\n\nNeed help? Check out the [documentation](https://github.com/iwangbowen/simple-sftp#readme)."
},
{
"view": "simpleSftp.deployProfiles",
"contents": "No deploy profiles yet.\n\nDeploy profiles let you map local directories to remote paths and auto-upload files on save.\n\n[$(add) Add Deploy Profile](command:simpleSftp.addDeployProfile)"
}
],
"submenus": [
{
"id": "simpleSftp.addMenu",
"label": "Add",
"icon": "$(add)"
},
{
"id": "simpleSftp.dualPanel.sortByMenu",
"label": "Sort By"
},
{
"id": "simpleSftp.dualPanel.viewModeMenu",
"label": "View Mode"
}
],
"commands": [
{
"command": "simpleSftp.addHost",
"title": "Add Host",
"category": "Simple SFTP",
"icon": "$(add)"
},
{
"command": "simpleSftp.addHostToGroup",
"title": "Add Host to Group",
"category": "Simple SFTP",
"icon": "$(add)"
},
{
"command": "simpleSftp.editHost",
"title": "Edit Host",
"category": "Simple SFTP",
"icon": "$(edit)"
},
{
"command": "simpleSftp.configureHostAdvanced",
"title": "Advanced Configuration",
"category": "Simple SFTP",
"icon": "$(settings-gear)"
},
{
"command": "simpleSftp.duplicateHost",
"title": "Duplicate Host",
"category": "Simple SFTP",
"icon": "$(copy)"
},
{
"command": "simpleSftp.deleteHost",
"title": "Delete",
"category": "Simple SFTP",
"icon": "$(trash)"
},
{
"command": "simpleSftp.addGroup",
"title": "Add Group",
"category": "Simple SFTP",
"icon": "$(add)"
},
{
"command": "simpleSftp.editGroup",
"title": "Edit Group",
"category": "Simple SFTP",
"icon": "$(edit)"
},
{
"command": "simpleSftp.importFromSshConfig",
"title": "Import from SSH Config",
"category": "Simple SFTP",
"icon": "$(cloud-download)"
},
{
"command": "simpleSftp.exportAllHosts",
"title": "Export All Hosts",
"category": "Simple SFTP",
"icon": "$(export)"
},
{
"command": "simpleSftp.exportAllHostsToSshConfig",
"title": "Export All to SSH Config",
"category": "Simple SFTP",
"icon": "$(file-code)"
},
{
"command": "simpleSftp.exportGroup",
"title": "Export Group",
"category": "Simple SFTP",
"icon": "$(export)"
},
{
"command": "simpleSftp.exportHost",
"title": "Export Host",
"category": "Simple SFTP",
"icon": "$(export)"
},
{
"command": "simpleSftp.exportHostToSshConfig",
"title": "Export to SSH Config",
"category": "Simple SFTP",
"icon": "$(file-code)"
},
{
"command": "simpleSftp.importHosts",
"title": "Import Hosts",
"category": "Simple SFTP",
"icon": "$(cloud-upload)"
},
{
"command": "simpleSftp.uploadFile",
"title": "Upload to Remote Host",
"category": "Simple SFTP"
},
{
"command": "simpleSftp.browseFiles",
"title": "Browse Files (QuickPick)",
"category": "Simple SFTP",
"icon": "$(list-selection)"
},
{
"command": "simpleSftp.showRecentPaths",
"title": "Recent Paths",
"category": "Simple SFTP",
"icon": "$(history)"
},
{
"command": "simpleSftp.downloadToLocal",
"title": "Download from Remote Host to Here",
"category": "Simple SFTP"
},
{
"command": "simpleSftp.setupPasswordlessLogin",
"title": "Setup Passwordless Login",
"category": "Simple SFTP",
"icon": "$(key)"
},
{
"command": "simpleSftp.testConnection",
"title": "Test Connection",
"category": "Simple SFTP",
"icon": "$(plug)"
},
{
"command": "simpleSftp.refresh",
"title": "Refresh",
"category": "Simple SFTP",
"icon": "$(refresh)"
},
{
"command": "simpleSftp.refreshPortForwardings",
"title": "Refresh",
"category": "Simple SFTP",
"icon": "$(refresh)"
},
{
"command": "simpleSftp.startPortForward",
"title": "Start Port Forward",
"category": "Simple SFTP",
"icon": "$(debug-start)"
},
{
"command": "simpleSftp.stopPortForward",
"title": "Stop Port Forward",
"category": "Simple SFTP",
"icon": "$(debug-stop)"
},
{
"command": "simpleSftp.deletePortForward",
"title": "Delete Port Forward",
"category": "Simple SFTP",
"icon": "$(trash)"
},
{
"command": "simpleSftp.openPortForwarding",
"title": "Port Forwarding",
"category": "Simple SFTP",
"icon": "$(plug)"
},
{
"command": "simpleSftp.configureAuth",
"title": "Configure Authentication",
"category": "Simple SFTP",
"icon": "$(lock)"
},
{
"command": "simpleSftp.copySshCommand",
"title": "Copy SSH Command",
"category": "Simple SFTP",
"icon": "$(copy)"
},
{
"command": "simpleSftp.openSshTerminal",
"title": "Open SSH Terminal",
"category": "Simple SFTP",
"icon": "$(terminal)"
},
{
"command": "simpleSftp.openSshTerminalAtBookmark",
"title": "Open SSH Terminal Here",
"category": "Simple SFTP",
"icon": "$(terminal)"
},
{
"command": "simpleSftp.addBookmark",
"title": "Add Bookmark",
"category": "Simple SFTP",
"icon": "$(bookmark)"
},
{
"command": "simpleSftp.renameBookmark",
"title": "Rename Bookmark",
"category": "Simple SFTP",
"icon": "$(edit)"
},
{
"command": "simpleSftp.editBookmarkDescription",
"title": "Edit Description",
"category": "Simple SFTP",
"icon": "$(note)"
},
{
"command": "simpleSftp.changeBookmarkColor",
"title": "Change Color",
"category": "Simple SFTP",
"icon": "$(symbol-color)"
},
{
"command": "simpleSftp.deleteBookmark",
"title": "Delete Bookmark",
"category": "Simple SFTP",
"icon": "$(trash)"
},
{
"command": "simpleSftp.browseBookmark",
"title": "Browse Files (QuickPick)",
"category": "Simple SFTP",
"icon": "$(list-selection)"
},
{
"command": "simpleSftp.browseBookmarkWebview",
"title": "Browse Files (WebView)",
"category": "Simple SFTP",
"icon": "$(folder-opened)"
},
{
"command": "simpleSftp.showLogs",
"title": "Show Output Logs",
"category": "Simple SFTP",
"icon": "$(output)"
},
{
"command": "simpleSftp.openWalkthrough",
"title": "Open Walkthrough",
"category": "Simple SFTP",
"icon": "$(play-circle)"
},
{
"command": "simpleSftp.showConnectionPool",
"title": "Show Connection Pool Status",
"category": "Simple SFTP",
"icon": "$(dashboard)"
},
{
"command": "simpleSftp.showResourceDashboard",
"title": "Show Resource Dashboard",
"category": "Simple SFTP",
"icon": "$(pulse)"
},
{
"command": "simpleSftp.moveHostToGroup",
"title": "Move to Group",
"category": "Simple SFTP",
"icon": "$(folder)"
},
{
"command": "simpleSftp.toggleStar",
"title": "Toggle Star",
"category": "Simple SFTP",
"icon": "$(star)"
},
{
"command": "simpleSftp.pauseQueue",
"title": "Pause Transfer Queue",
"category": "Simple SFTP",
"icon": "$(debug-pause)"
},
{
"command": "simpleSftp.resumeQueue",
"title": "Resume Transfer Queue",
"category": "Simple SFTP",
"icon": "$(debug-continue)"
},
{
"command": "simpleSftp.pauseTask",
"title": "Pause Transfer Task",
"category": "Simple SFTP",
"icon": "$(debug-pause)"
},
{
"command": "simpleSftp.resumeTask",
"title": "Resume Transfer Task",
"category": "Simple SFTP",
"icon": "$(debug-continue)"
},
{
"command": "simpleSftp.cancelTask",
"title": "Cancel Transfer Task",
"category": "Simple SFTP",
"icon": "$(close)"
},
{
"command": "simpleSftp.retryTask",
"title": "Retry Failed Task",
"category": "Simple SFTP",
"icon": "$(refresh)"
},
{
"command": "simpleSftp.removeTask",
"title": "Remove Task from Queue",
"category": "Simple SFTP",
"icon": "$(trash)"
},
{
"command": "simpleSftp.clearCompleted",
"title": "Clear Completed Tasks",
"category": "Simple SFTP",
"icon": "$(clear-all)"
},
{
"command": "simpleSftp.clearAll",
"title": "Clear All Tasks",
"category": "Simple SFTP",
"icon": "$(trash)"
},
{
"command": "simpleSftp.showTaskDetails",
"title": "Show Task Details",
"category": "Simple SFTP",
"icon": "$(info)"
},
{
"command": "simpleSftp.viewTransferHistory",
"title": "View Transfer History",
"category": "Simple SFTP",
"icon": "$(history)"
},
{
"command": "simpleSftp.clearHistory",
"title": "Clear Transfer History",
"category": "Simple SFTP",
"icon": "$(clear-all)"
},
{
"command": "simpleSftp.removeHistoryTask",
"title": "Remove from History",
"category": "Simple SFTP",
"icon": "$(trash)"
},
{
"command": "simpleSftp.openGitHubReadme",
"title": "Read Documentation",
"category": "Simple SFTP",
"icon": "$(book)"
},
{
"command": "simpleSftp.openIssues",
"title": "Review Issues",
"category": "Simple SFTP",
"icon": "$(issues)"
},
{
"command": "simpleSftp.reportIssue",
"title": "Report Issue",
"category": "Simple SFTP",
"icon": "$(comment)"
},
{
"command": "simpleSftp.openGitHubRepo",
"title": "View on GitHub",
"category": "Simple SFTP",
"icon": "$(github)"
},
{
"command": "simpleSftp.expandAll",
"title": "Expand All",
"category": "Simple SFTP",
"icon": "$(expand-all)"
},
{
"command": "simpleSftp.collapseAll",
"title": "Collapse All",
"category": "Simple SFTP",
"icon": "$(collapse-all)"
},
{
"command": "simpleSftp.openDualPanelBrowser",
"title": "Browse Files (WebView)",
"category": "Simple SFTP",
"icon": "$(folder-opened)"
},
{
"command": "simpleSftp.dualPanel.upload",
"title": "Upload to Remote",
"category": "Simple SFTP",
"icon": "$(cloud-upload)"
},
{
"command": "simpleSftp.dualPanel.download",
"title": "Download to Left Panel",
"category": "Simple SFTP",
"icon": "$(cloud-download)"
},
{
"command": "simpleSftp.dualPanel.downloadTo",
"title": "Download to...",
"category": "Simple SFTP",
"icon": "$(cloud-download)"
},
{
"command": "simpleSftp.dualPanel.uploadFiles",
"title": "Upload Files...",
"category": "Simple SFTP",
"icon": "$(cloud-upload)"
},
{
"command": "simpleSftp.dualPanel.delete",
"title": "Delete",
"category": "Simple SFTP",
"icon": "$(trash)"
},
{
"command": "simpleSftp.dualPanel.changePermissions",
"title": "Change Permissions",
"category": "Simple SFTP",
"icon": "$(shield)"
},
{
"command": "simpleSftp.dualPanel.rename",
"title": "Rename",
"category": "Simple SFTP",
"icon": "$(edit)"
},
{
"command": "simpleSftp.dualPanel.batchRename",
"title": "Batch Rename",
"category": "Simple SFTP",
"icon": "$(edit)"
},
{
"command": "simpleSftp.dualPanel.copyFullPath",
"title": "Copy Full Path",
"category": "Simple SFTP",
"icon": "$(copy)"
},
{
"command": "simpleSftp.dualPanel.duplicate",
"title": "Duplicate",
"category": "Simple SFTP",
"icon": "$(files)"
},
{
"command": "simpleSftp.dualPanel.move",
"title": "Move...",
"category": "Simple SFTP",
"icon": "$(arrow-right)"
},
{
"command": "simpleSftp.dualPanel.createFile",
"title": "New File",
"category": "Simple SFTP",
"icon": "$(new-file)"
},
{
"command": "simpleSftp.dualPanel.createFolder",
"title": "New Folder",
"category": "Simple SFTP",
"icon": "$(new-folder)"
},
{
"command": "simpleSftp.dualPanel.refresh",
"title": "Refresh",
"category": "Simple SFTP",
"icon": "$(refresh)"
},
{
"command": "simpleSftp.dualPanel.addBookmark",
"title": "Add to Bookmarks",
"category": "Simple SFTP",
"icon": "$(bookmark)"
},
{
"command": "simpleSftp.dualPanel.selectForCompare",
"title": "Select for Compare",
"category": "Simple SFTP",
"icon": "$(git-compare)"
},
{
"command": "simpleSftp.dualPanel.compareWithSelected",
"title": "Compare with Selected",
"category": "Simple SFTP",
"icon": "$(diff)"
},
{
"command": "simpleSftp.dualPanel.localMore.newFile",
"title": "New File",
"category": "Simple SFTP",
"icon": "$(new-file)"
},
{
"command": "simpleSftp.dualPanel.localMore.newFolder",
"title": "New Folder",
"category": "Simple SFTP",
"icon": "$(new-folder)"
},
{
"command": "simpleSftp.dualPanel.localMore.uploadSelected",
"title": "Upload Selected",
"category": "Simple SFTP",
"icon": "$(cloud-upload)"
},
{
"command": "simpleSftp.dualPanel.remoteMore.newFile",
"title": "New File",
"category": "Simple SFTP",
"icon": "$(new-file)"
},
{
"command": "simpleSftp.dualPanel.remoteMore.newFolder",
"title": "New Folder",
"category": "Simple SFTP",
"icon": "$(new-folder)"
},
{
"command": "simpleSftp.dualPanel.remoteMore.downloadSelected",
"title": "Download Selected",
"category": "Simple SFTP",
"icon": "$(cloud-download)"
},
{
"command": "simpleSftp.dualPanel.remoteMore.portForwarding",
"title": "Port Forwarding",
"category": "Simple SFTP",
"icon": "$(plug)"
},
{
"command": "simpleSftp.dualPanel.remoteMore.searchFiles",
"title": "Search Files",
"category": "Simple SFTP",
"icon": "$(search)"
},
{
"command": "simpleSftp.dualPanel.openInNewTab",
"title": "Open in New Tab",
"category": "Simple SFTP"
},
{
"command": "simpleSftp.dualPanel.openInTerminal",
"title": "Open in Terminal",
"category": "Simple SFTP",
"icon": "$(terminal)"
},
{
"command": "simpleSftp.dualPanel.previewImageInWebview",
"title": "Preview Image in WebView",
"category": "Simple SFTP",
"icon": "$(preview)"
},
{
"command": "simpleSftp.dualPanel.compress",
"title": "Compress...",
"category": "Simple SFTP",
"icon": "$(archive)"
},
{
"command": "simpleSftp.dualPanel.decompress",
"title": "Extract Here",
"category": "Simple SFTP",
"icon": "$(expand-all)"
},
{
"command": "simpleSftp.dualPanel.compressLocal",
"title": "Compress...",
"category": "Simple SFTP",
"icon": "$(archive)"
},
{
"command": "simpleSftp.dualPanel.decompressLocal",
"title": "Extract Here",
"category": "Simple SFTP",
"icon": "$(expand-all)"
},
{
"command": "simpleSftp.dualPanel.switchToListView",
"title": "Switch to List View",
"category": "Simple SFTP",
"icon": "$(list-flat)"
},
{
"command": "simpleSftp.dualPanel.switchToGridView",
"title": "Switch to Grid View",
"category": "Simple SFTP",
"icon": "$(symbol-namespace)"
},
{
"command": "simpleSftp.dualPanel.sortByName",
"title": "Name",
"category": "Simple SFTP"
},
{
"command": "simpleSftp.dualPanel.sortBySize",
"title": "Size",
"category": "Simple SFTP"
},
{
"command": "simpleSftp.dualPanel.sortByModifiedTime",
"title": "Modified Time",
"category": "Simple SFTP"
},
{
"command": "simpleSftp.addDeployProfile",
"title": "Add Deploy Profile",
"category": "Simple SFTP",
"icon": "$(add)"
},
{
"command": "simpleSftp.editDeployProfile",
"title": "Edit Deploy Profile",
"category": "Simple SFTP",
"icon": "$(edit)"
},
{
"command": "simpleSftp.deleteDeployProfile",
"title": "Delete Deploy Profile",
"category": "Simple SFTP",
"icon": "$(trash)"
},
{
"command": "simpleSftp.toggleDeployProfile",
"title": "Toggle Deploy Profile",
"category": "Simple SFTP",
"icon": "$(eye)"
},
{
"command": "simpleSftp.toggleUploadOnSave",
"title": "Toggle Upload on Save",
"category": "Simple SFTP",
"icon": "$(cloud-upload)"
},
{
"command": "simpleSftp.uploadAllNow",
"title": "Upload All Now",
"category": "Simple SFTP",
"icon": "$(sync)"
},
{
"command": "simpleSftp.previewSyncProfile",
"title": "Preview Changes",
"category": "Simple SFTP",
"icon": "$(preview)"
},
{
"command": "simpleSftp.syncProfileNow",
"title": "Sync Now",
"category": "Simple SFTP",
"icon": "$(sync)"
},
{
"command": "simpleSftp.openSyncDiff",
"title": "Open Sync Diff",
"category": "Simple SFTP",
"icon": "$(diff)"
},
{
"command": "simpleSftp.manageRemoteTasks",
"title": "Manage Remote Tasks",
"category": "Simple SFTP",
"icon": "$(terminal)"
},
{
"command": "simpleSftp.runRemoteTask",
"title": "Run Remote Task",
"category": "Simple SFTP",
"icon": "$(play)"
},
{
"command": "simpleSftp.retryFailedSync",
"title": "Retry Failed Only",
"category": "Simple SFTP",
"icon": "$(refresh)"
},
{
"command": "simpleSftp.manageDeployProfiles",
"title": "Manage Deploy Profiles",
"category": "Simple SFTP",
"icon": "$(list-unordered)"
}
],
"menus": {
"webview/context": [
{
"command": "simpleSftp.dualPanel.upload",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'localFile'",
"group": "1_files@1"
},
{
"command": "simpleSftp.dualPanel.download",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'remoteFile'",
"group": "1_files@2"
},
{
"command": "simpleSftp.dualPanel.downloadTo",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'remoteFile'",
"group": "1_files@3"
},
{
"command": "simpleSftp.dualPanel.previewImageInWebview",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'localFile' || webviewSection == 'remoteFile') && isImage == true",
"group": "2_operations@6.5"
},
{
"command": "simpleSftp.dualPanel.uploadFiles",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'remoteFile' || webviewSection == 'remoteEmpty')",
"group": "1_files@4"
},
{
"command": "simpleSftp.dualPanel.refresh",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection != 'localMore' && webviewSection != 'remoteMore'",
"group": "2_operations@1"
},
{
"command": "simpleSftp.dualPanel.createFile",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection != 'localMore' && webviewSection != 'remoteMore'",
"group": "2_operations@2"
},
{
"command": "simpleSftp.dualPanel.createFolder",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection != 'localMore' && webviewSection != 'remoteMore'",
"group": "2_operations@2.5"
},
{
"command": "simpleSftp.dualPanel.rename",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'localFile' || webviewSection == 'remoteFile')",
"group": "2_operations@3"
},
{
"command": "simpleSftp.dualPanel.batchRename",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'localFile' || webviewSection == 'remoteFile')",
"group": "2_operations@4"
},
{
"command": "simpleSftp.dualPanel.copyFullPath",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'localFile' || webviewSection == 'remoteFile')",
"group": "2_operations@4.5"
},
{
"command": "simpleSftp.dualPanel.duplicate",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'localFile' || webviewSection == 'remoteFile')",
"group": "2_operations@4.6"
},
{
"command": "simpleSftp.dualPanel.move",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'localFile' || webviewSection == 'remoteFile')",
"group": "2_operations@4.7"
},
{
"command": "simpleSftp.dualPanel.changePermissions",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'localFile' || webviewSection == 'remoteFile')",
"group": "2_operations@5"
},
{
"command": "simpleSftp.dualPanel.compress",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'remoteFile'",
"group": "2_operations@5.5"
},
{
"command": "simpleSftp.dualPanel.decompress",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'remoteFile' && isArchive == true",
"group": "2_operations@5.6"
},
{
"command": "simpleSftp.dualPanel.compressLocal",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'localFile'",
"group": "2_operations@5.5"
},
{
"command": "simpleSftp.dualPanel.decompressLocal",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'localFile' && isArchive == true",
"group": "2_operations@5.6"
},
{
"command": "simpleSftp.dualPanel.addBookmark",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'remoteFile' || webviewSection == 'remoteEmpty')",
"group": "2_operations@5"
},
{
"command": "simpleSftp.dualPanel.openInTerminal",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'localFile' || webviewSection == 'localEmpty' || webviewSection == 'remoteFile' || webviewSection == 'remoteEmpty')",
"group": "2_operations@6"
},
{
"command": "simpleSftp.dualPanel.selectForCompare",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'localFile' || webviewSection == 'remoteFile')",
"group": "4_compare@1"
},
{
"command": "simpleSftp.dualPanel.compareWithSelected",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'localFile' || webviewSection == 'remoteFile') && hasFileSelectedForCompare",
"group": "4_compare@2"
},
{
"command": "simpleSftp.dualPanel.delete",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'localFile' || webviewSection == 'remoteFile')",
"group": "3_dangerous@1"
},
{
"command": "simpleSftp.dualPanel.localMore.newFile",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'localMore'",
"group": "1_actions@1"
},
{
"command": "simpleSftp.dualPanel.localMore.newFolder",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'localMore'",
"group": "1_actions@1.5"
},
{
"command": "simpleSftp.dualPanel.localMore.uploadSelected",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'localMore'",
"group": "1_actions@2"
},
{
"command": "simpleSftp.dualPanel.remoteMore.newFile",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'remoteMore'",
"group": "1_actions@1"
},
{
"command": "simpleSftp.dualPanel.remoteMore.newFolder",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'remoteMore'",
"group": "1_actions@1.5"
},
{
"command": "simpleSftp.dualPanel.remoteMore.downloadSelected",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'remoteMore'",
"group": "1_actions@2"
},
{
"command": "simpleSftp.dualPanel.openInNewTab",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'remoteMore'",
"group": "1_actions@2.5"
},
{
"command": "simpleSftp.dualPanel.remoteMore.portForwarding",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'remoteMore'",
"group": "2_tools@1"
},
{
"command": "simpleSftp.dualPanel.remoteMore.searchFiles",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && webviewSection == 'remoteMore'",
"group": "2_tools@2"
},
{
"submenu": "simpleSftp.dualPanel.sortByMenu",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'localFile' || webviewSection == 'localEmpty' || webviewSection == 'remoteFile' || webviewSection == 'remoteEmpty' || webviewSection == 'localMore' || webviewSection == 'remoteMore')",
"group": "5_view@1"
},
{
"submenu": "simpleSftp.dualPanel.viewModeMenu",
"when": "webviewId == 'simpleSftp.dualPanelBrowser' && (webviewSection == 'localFile' || webviewSection == 'localEmpty' || webviewSection == 'remoteFile' || webviewSection == 'remoteEmpty' || webviewSection == 'localMore' || webviewSection == 'remoteMore')",
"group": "5_view@2"
}
],
"simpleSftp.dualPanel.sortByMenu": [
{
"command": "simpleSftp.dualPanel.sortByName",
"group": "1@1"
},
{
"command": "simpleSftp.dualPanel.sortBySize",
"group": "1@2"
},
{
"command": "simpleSftp.dualPanel.sortByModifiedTime",
"group": "1@3"
}
],
"simpleSftp.dualPanel.viewModeMenu": [
{
"command": "simpleSftp.dualPanel.switchToListView",
"group": "1@1"