-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
2753 lines (2753 loc) · 82.9 KB
/
package.json
File metadata and controls
2753 lines (2753 loc) · 82.9 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": "sven",
"displayName": "Sven",
"description": "Integrated Subversion source control with Positron IDE support. Privacy-focused: zero telemetry, local-only operations.",
"version": "0.2.24",
"publisher": "vrognas",
"engines": {
"vscode": "^1.105.0",
"positron": "^2025.11.0"
},
"icon": "images/sven.png",
"homepage": "https://github.com/vrognas/sven#readme",
"repository": {
"type": "git",
"url": "https://github.com/vrognas/sven.git"
},
"bugs": {
"url": "https://github.com/vrognas/sven/issues"
},
"license": "MIT",
"categories": [
"Other",
"SCM Providers"
],
"keywords": [
"multi-root ready",
"scm",
"svn",
"subversion",
"positron",
"data-science",
"privacy"
],
"activationEvents": [
"workspaceContains:.svn",
"workspaceContains:**/.svn"
],
"extensionKind": [
"workspace"
],
"main": "./dist/extension.js",
"sideEffects": [
"*.css",
"*.scss"
],
"scripts": {
"build": "npm run compile",
"build:css": "sass scss/:css/ --style=compressed --no-source-map",
"build:ts": "tsc -p ./",
"compile": "node build.js && npm run build:css",
"dev": "npm run watch",
"watch": "npm-run-all --parallel watch:ts watch:css",
"watch:ts": "node build.js --watch",
"lint": "npx eslint src test scripts --ext .ts",
"lint:fix": "npx eslint src test scripts --ext .ts --fix",
"organize": "node ./out/tools/organize.js",
"package": "npx @vscode/vsce package --no-yarn",
"prepare": "husky",
"pretest": "npm-run-all --parallel build:ts lint",
"security:validate-errors": "tsc -p scripts/tsconfig.json && node out/scripts/validate-error-logging.js",
"semantic-release": "semantic-release",
"size": "size-limit",
"style-check": "prettier --check 'src/**/*.ts'",
"style-fix": "prettier --write \"src/**/*.ts\"",
"test": "npm run test:unit && node -e \"if (process.env.CI === 'true') { require('child_process').execSync('npm run test:e2e', { stdio: 'inherit' }); }\"",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test:e2e": "vscode-test",
"test:coverage": "vitest run --coverage && c8 --reporter=html --reporter=text --reporter=lcov vscode-test",
"test:fast": "vitest run",
"tools:genReadme": "node ./out/tools/generateConfigSectionForReadme.js",
"vscode:prepublish": "npm run compile",
"watch:css": "sass scss/:css/ --watch --style=compressed --no-source-map"
},
"size-limit": [
{
"path": "dist/extension.js",
"limit": "350 KB"
}
],
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@vscode/iconv-lite-umd": "^0.7.1",
"chardet": "^2.1.1",
"fast-xml-parser": "^5.3.3",
"picomatch": "^4.0.3",
"semver": "^7.6.3",
"tmp": "^0.2.5"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@posit-dev/positron": "^0.1.8",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@size-limit/file": "^12.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.1",
"@types/picomatch": "^4.0.2",
"@types/semver": "^7.5.8",
"@types/sinon": "^21.0.0",
"@types/tmp": "^0.2.6",
"@types/vscode": "^1.105.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitest/coverage-v8": "^4.0.16",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"c8": "^10.1.3",
"decache": "^4.6.2",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"glob": "^13.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"npm-run-all2": "^7.0.2",
"original-fs": "^1.2.0",
"prettier": "^3.6.2",
"prettylint": "^2.0.0",
"sass": "^1.97.3",
"semantic-release": "^24.2.9",
"semantic-release-vsce": "^6.0.23",
"sinon": "^21.0.1",
"size-limit": "^12.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vitest": "^4.0.14"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"overrides": {
"prettier": "^3.6.2",
"npm": {
"glob": "^10.5.0"
}
},
"_comment_security": "Known dev-only vulnerability: glob@10.4.5 in npm@10.9.4 (transitive via @semantic-release/npm@12.0.2). This is a dev dependency only, vulnerability is in glob CLI --cmd flag (we use library API). Production dependencies have 0 vulnerabilities. Risk: LOW. See docs/SECURITY_NOTES.md for details.",
"contributes": {
"views": {
"scm": [
{
"id": "sven.branchchanges",
"name": "Branch Changes",
"when": "svnOpenRepositoryCount != 0 && svn.hasBranch",
"visibility": "visible",
"order": 2
},
{
"id": "sven.repolog",
"name": "Repo History",
"when": "svnOpenRepositoryCount != 0",
"visibility": "collapsed",
"order": 3
},
{
"id": "sven.itemlog",
"name": "File History",
"when": "svnOpenRepositoryCount != 0",
"visibility": "collapsed",
"order": 4
},
{
"id": "sven.sparseCheckout",
"name": "Selective Download",
"when": "svnOpenRepositoryCount != 0",
"visibility": "collapsed",
"order": 5
}
]
},
"viewsWelcome": [
{
"view": "sven.repolog",
"contents": "View the commit history of your repository.\n\n[Show Log](command:sven.log)\n\nTip: Use the log to browse commits, view changes, and understand project history.",
"when": "svnOpenRepositoryCount != 0"
},
{
"view": "sven.itemlog",
"contents": "Open a versioned file to view its revision history.\n\nThe history updates automatically when you switch files in the editor.",
"when": "svnOpenRepositoryCount != 0"
},
{
"view": "branchchanges",
"contents": "Compare your branch against trunk to see what's changed.\n\nThis view shows commits unique to your branch that haven't been merged to trunk yet.",
"when": "svnOpenRepositoryCount != 0 && svn.hasBranch"
},
{
"view": "sparseCheckout",
"contents": "Choose which folders and files to download from the repository.\n\nExpand folders to browse server contents. De-emphasized items are on the server but not downloaded locally.\n\n[Refresh](command:sven.sparse.refresh)",
"when": "svnOpenRepositoryCount != 0"
}
],
"walkthroughs": [
{
"id": "sven.gettingStarted",
"title": "Getting Started with SVN",
"description": "Set up SVN and learn the basics",
"steps": [
{
"id": "sven.gettingStarted.verify",
"title": "Verify SVN Installation",
"description": "Ensure SVN command-line tools are installed on your system.\n\nOpen a terminal and run:\n```\nsvn --version\n```\n\nIf not installed, download from [Apache Subversion](https://subversion.apache.org/packages.html).",
"media": {
"markdown": "media/walkthroughs/verify-svn.md"
},
"completionEvents": [
"onContext:svnOpenRepositoryCount"
]
},
{
"id": "sven.gettingStarted.open",
"title": "Open a Repository",
"description": "Open an existing working copy or checkout a new repository.\n\n[Checkout Repository](command:sven.checkout)\n\nOr simply open a folder that contains a `.svn` directory.",
"media": {
"markdown": "media/walkthroughs/open-repo.md"
},
"completionEvents": [
"onContext:svnOpenRepositoryCount"
]
},
{
"id": "sven.gettingStarted.tour",
"title": "Tour the SCM Panel",
"description": "The Source Control panel has 4 views:\n\n- **Repo History**: Commit log\n- **File History**: Per-file revisions\n- **Branch Changes**: Your branch vs trunk\n- **Selective Download**: Sparse checkout\n\n**Remote Changes** appear in the main SCM panel when updates are available.\n\n[Open Source Control](command:workbench.view.scm)",
"media": {
"markdown": "media/walkthroughs/tour-scm.md"
},
"completionEvents": [
"onView:workbench.scm"
]
}
]
},
{
"id": "sven.dailyWorkflow",
"title": "Daily SVN Workflow",
"description": "Master the update-edit-commit cycle",
"steps": [
{
"id": "sven.dailyWorkflow.check",
"title": "Check for Updates",
"description": "See what others have committed before you start working.\n\n[Check for Incoming Changes](command:sven.refreshRemoteChanges)\n\nTip: Enable `sven.refresh.remoteChanges` to include remote checks with every refresh.",
"media": {
"markdown": "media/walkthroughs/check-updates.md"
},
"completionEvents": [
"onCommand:sven.refreshRemoteChanges"
]
},
{
"id": "sven.dailyWorkflow.update",
"title": "Update Working Copy",
"description": "Pull the latest changes from the server.\n\n[Update](command:sven.update)\n\nThis merges remote changes into your local files.",
"media": {
"markdown": "media/walkthroughs/update.md"
},
"completionEvents": [
"onCommand:sven.update"
]
},
{
"id": "sven.dailyWorkflow.stage",
"title": "Stage Your Changes",
"description": "After editing files, stage them for commit.\n\n[Stage All Changes](command:sven.stageAll)\n\nOr click the **+** icon next to individual files in the Source Control view.",
"media": {
"markdown": "media/walkthroughs/stage.md"
},
"completionEvents": [
"onCommand:sven.stage",
"onCommand:sven.stageAll"
]
},
{
"id": "sven.dailyWorkflow.commit",
"title": "Commit Changes",
"description": "Save your staged changes to the repository.\n\n[Commit](command:sven.commit)\n\nWrite a clear commit message describing what you changed and why.",
"media": {
"markdown": "media/walkthroughs/commit.md"
},
"completionEvents": [
"onCommand:sven.commit",
"onCommand:sven.commitWithMessage"
]
}
]
},
{
"id": "sven.investigateHistory",
"title": "Investigate Code History",
"description": "Understand who changed what and when",
"steps": [
{
"id": "sven.investigateHistory.log",
"title": "View File History",
"description": "See all revisions of a file.\n\nOpen any versioned file and check the **File History** pane in the Source Control sidebar. It updates automatically as you switch files.",
"media": {
"markdown": "media/walkthroughs/file-history.md"
},
"completionEvents": [
"onView:sven.itemlog"
]
},
{
"id": "sven.investigateHistory.blame",
"title": "Toggle Blame Annotations",
"description": "See who last modified each line of code.\n\n[Toggle Blame](command:sven.blame.toggleBlame)\n\nHover over annotations to see commit details.",
"media": {
"markdown": "media/walkthroughs/blame.md"
},
"completionEvents": [
"onCommand:sven.blame.toggleBlame",
"onCommand:sven.blame.showBlame"
]
},
{
"id": "sven.investigateHistory.diff",
"title": "Compare Revisions",
"description": "View differences between file versions.\n\nIn the File History view, click any revision to see its changes.\n\nOr right-click and select **Open Diff**.",
"media": {
"markdown": "media/walkthroughs/compare-revisions.md"
},
"completionEvents": [
"onCommand:sven.itemlog.openDiff"
]
}
]
},
{
"id": "sven.sparseCheckout",
"title": "Large Repositories",
"description": "Download only what you need",
"steps": [
{
"id": "sven.sparseCheckout.enable",
"title": "Open Selective Download",
"description": "For large repositories, download only the folders you need.\n\nOpen the **Selective Download** view in the Source Control sidebar to browse and select folders.",
"media": {
"markdown": "media/walkthroughs/sparse-enable.md"
},
"completionEvents": [
"onView:sven.sparseCheckout"
]
},
{
"id": "sven.sparseCheckout.select",
"title": "Select Folders",
"description": "Use the **Selective Download** view to choose which folders to download.\n\n- Expand folders to browse server contents\n- Check/uncheck to include/exclude\n- De-emphasized items are on server only\n\n[Refresh Sparse View](command:sven.sparse.refresh)",
"media": {
"markdown": "media/walkthroughs/sparse-select.md"
},
"completionEvents": [
"onCommand:sven.sparse.checkout",
"onCommand:sven.sparse.exclude"
]
}
]
},
{
"id": "sven.fileLocking",
"title": "File Locking",
"description": "Exclusive editing for binary files",
"steps": [
{
"id": "sven.fileLocking.lock",
"title": "Lock a File",
"description": "Prevent others from editing while you work.\n\n[Lock File](command:sven.lock)\n\nRight-click a file in Explorer or Source Control and select **SVN: Lock**.\n\nIdeal for binary files (images, docs) that can't be merged.",
"media": {
"markdown": "media/walkthroughs/lock-file.md"
},
"completionEvents": [
"onCommand:sven.lock"
]
},
{
"id": "sven.fileLocking.unlock",
"title": "Commit & Unlock",
"description": "Committing automatically releases locks.\n\nOr manually unlock without committing:\n\n[Unlock File](command:sven.unlock)\n\nNote: Admins can break others' locks with **SVN: Break Lock**.",
"media": {
"markdown": "media/walkthroughs/unlock-file.md"
},
"completionEvents": [
"onCommand:sven.unlock",
"onCommand:sven.commit"
]
},
{
"id": "sven.fileLocking.needsLock",
"title": "Set Auto-Lock Property",
"description": "Mark files that should always require locking.\n\n[Toggle Needs-Lock](command:sven.toggleNeedsLock)\n\nSets `svn:needs-lock` property. File becomes read-only until locked.",
"media": {
"markdown": "media/walkthroughs/needs-lock.md"
},
"completionEvents": [
"onCommand:sven.toggleNeedsLock"
]
}
]
}
],
"commands": [
{
"command": "sven.clearCache",
"title": "Clear SVN Path Cache",
"category": "SVN"
},
{
"command": "sven.add",
"title": "Add",
"category": "SVN",
"icon": "$(add)"
},
{
"command": "sven.addToIgnoreExplorer",
"title": "Add to Ignore List (svn:ignore)...",
"category": "SVN"
},
{
"command": "sven.removeFromIgnore",
"title": "Remove from Ignore List (svn:ignore)",
"category": "SVN"
},
{
"command": "sven.toggleIgnore",
"title": "Toggle Ignore (svn:ignore)",
"category": "SVN",
"icon": "$(eye-closed)"
},
{
"command": "sven.viewIgnorePatterns",
"title": "View Ignore Patterns...",
"category": "SVN"
},
{
"command": "sven.addToIgnoreSCM",
"title": "Add to Ignore List (svn:ignore)...",
"category": "SVN"
},
{
"command": "sven.toggleWatch",
"title": "Toggle Watch for Remote Changes",
"category": "SVN",
"icon": "$(eye)"
},
{
"command": "sven.manageWatches",
"title": "Manage Watches...",
"category": "SVN"
},
{
"command": "sven.setEolStyle",
"title": "Set Line Ending Style (EOL)...",
"category": "SVN",
"icon": "$(symbol-text)"
},
{
"command": "sven.removeEolStyle",
"title": "Remove Line Ending Style (EOL)",
"category": "SVN"
},
{
"command": "sven.manageEolStyle",
"title": "Manage Line Ending Styles (EOL)...",
"category": "SVN"
},
{
"command": "sven.setMimeType",
"title": "Set File Type (MIME)...",
"category": "SVN",
"icon": "$(file-media)"
},
{
"command": "sven.removeMimeType",
"title": "Remove File Type (MIME)",
"category": "SVN"
},
{
"command": "sven.manageAutoProps",
"title": "Manage Auto-Properties...",
"category": "SVN",
"icon": "$(gear)"
},
{
"command": "sven.openClientConfig",
"title": "Open SVN Client Config",
"category": "SVN",
"icon": "$(settings-gear)"
},
{
"command": "sven.blameFile",
"title": "Show Annotations (Blame)",
"category": "SVN",
"icon": "$(git-commit)"
},
{
"command": "sven.blame.clearBlame",
"title": "Clear Annotations",
"category": "SVN Blame",
"icon": "$(close)"
},
{
"command": "sven.blame.showBlame",
"title": "Show Annotations",
"category": "SVN Blame",
"icon": "$(git-commit)"
},
{
"command": "sven.blame.toggleBlame",
"title": "Toggle Annotations (Blame)",
"category": "SVN Blame"
},
{
"command": "sven.blame.enableBlame",
"title": "Enable Annotations",
"category": "SVN Blame",
"icon": "$(eye-closed)"
},
{
"command": "sven.blame.disableBlame",
"title": "Disable Annotations",
"category": "SVN Blame",
"icon": "$(eye)"
},
{
"command": "sven.blame.untrackedInfo",
"title": "File Not Tracked",
"category": "SVN Blame",
"icon": "$(circle-slash)"
},
{
"command": "sven.branchchanges.openDiff",
"category": "SVN",
"title": "Open diff"
},
{
"command": "sven.branchchanges.refresh",
"category": "SVN",
"title": "Refresh branch changes",
"icon": "$(refresh)"
},
{
"command": "sven.changelist",
"title": "Set Change Group (Changelist)...",
"category": "SVN",
"icon": "$(list-unordered)"
},
{
"command": "sven.checkout",
"title": "Checkout...",
"category": "SVN"
},
{
"command": "sven.cleanup",
"title": "Cleanup...",
"category": "SVN"
},
{
"command": "sven.close",
"title": "Close repository",
"category": "SVN"
},
{
"command": "sven.commit",
"title": "Commit Selected Files",
"category": "SVN",
"icon": "$(check)"
},
{
"command": "sven.commitAll",
"title": "Commit All Changes",
"category": "SVN",
"icon": "$(check)"
},
{
"command": "sven.commitWithMessage",
"title": "Commit Changes",
"category": "SVN",
"icon": "$(check)"
},
{
"command": "sven.commitFromInputBox",
"title": "Commit (from input box)",
"category": "SVN"
},
{
"command": "sven.commitStaged",
"title": "Commit Staged",
"category": "SVN",
"icon": "$(check)"
},
{
"command": "sven.commitQuick",
"title": "Commit (Quick)",
"category": "SVN",
"icon": "$(check)"
},
{
"command": "sven.deleteUnversioned",
"title": "Delete selected files",
"category": "SVN"
},
{
"command": "sven.itemlog.copymsg",
"category": "SVN",
"title": "Copy message"
},
{
"command": "sven.itemlog.copyrevision",
"category": "SVN",
"title": "Copy revision number"
},
{
"command": "sven.itemlog.openDiff",
"title": "Open diff",
"category": "SVN"
},
{
"command": "sven.itemlog.openDiffBase",
"title": "Open diff with BASE (Your Last Update)",
"category": "SVN"
},
{
"command": "sven.diffWithExternalTool",
"title": "Diff with External Tool",
"category": "SVN"
},
{
"command": "sven.itemlog.openFileRemote",
"title": "Open this revision",
"category": "SVN"
},
{
"command": "sven.itemlog.refresh",
"category": "SVN",
"title": "Refresh log for item",
"icon": "$(refresh)"
},
{
"command": "sven.itemlog.gotoRepolog",
"category": "SVN",
"title": "Go to Repository History"
},
{
"command": "sven.itemlog.rollbackToRevision",
"category": "SVN",
"title": "Rollback to this revision"
},
{
"command": "sven.repolog.goToRevision",
"category": "SVN",
"title": "Go to Revision..."
},
{
"command": "sven.log",
"title": "Show commit messages",
"category": "SVN"
},
{
"command": "sven.merge",
"title": "Merge...",
"category": "SVN"
},
{
"command": "sven.openChangeBase",
"title": "Open Changes with BASE (Your Last Update)",
"category": "SVN",
"icon": {
"light": "icons/light/open-change-base.svg",
"dark": "icons/dark/open-change-base.svg"
}
},
{
"command": "sven.openChangeHead",
"title": "Open Changes with HEAD (Server Latest)",
"category": "SVN",
"icon": {
"light": "icons/light/open-change-head.svg",
"dark": "icons/dark/open-change-head.svg"
}
},
{
"command": "sven.openChangePrev",
"title": "Open Changes with PREV (Previous Revision)",
"category": "SVN"
},
{
"command": "sven.openFile",
"title": "Open File",
"category": "SVN",
"icon": "$(go-to-file)"
},
{
"command": "sven.revealInExplorer",
"title": "Reveal in File Explorer",
"category": "SVN",
"icon": "$(folder-opened)"
},
{
"command": "sven.revealInExplorerView",
"title": "Reveal in Explorer View",
"category": "SVN"
},
{
"command": "sven.copyRelativePath",
"title": "Copy Relative Path",
"category": "SVN"
},
{
"command": "sven.copyAbsolutePath",
"title": "Copy Path",
"category": "SVN"
},
{
"command": "sven.openHEADFile",
"title": "Open File (HEAD - Server Latest)",
"category": "SVN"
},
{
"command": "sven.patch",
"title": "Show Changes (Patch) for Selected",
"category": "SVN"
},
{
"command": "sven.patchAll",
"title": "Show All Changes (Patch)",
"category": "SVN"
},
{
"command": "sven.patchChangeList",
"title": "Show Changes from Change Group (Changelist)",
"category": "SVN"
},
{
"command": "sven.pickCommitMessage",
"title": "Pick Previous Message...",
"category": "SVN",
"icon": "$(history)"
},
{
"command": "sven.refresh",
"title": "Refresh",
"category": "SVN",
"icon": "$(refresh)"
},
{
"command": "sven.clearCredentials",
"title": "Clear Saved Credentials",
"category": "SVN",
"icon": "$(key)"
},
{
"command": "sven.refreshRemoteChanges",
"title": "Refresh Remote Changes",
"category": "SVN",
"icon": "$(refresh)"
},
{
"command": "sven.lock",
"title": "Lock",
"category": "SVN",
"icon": "$(lock)"
},
{
"command": "sven.unlock",
"title": "Unlock",
"category": "SVN",
"icon": "$(unlock)"
},
{
"command": "sven.breakLock",
"title": "Break Lock",
"category": "SVN",
"icon": "$(warning)"
},
{
"command": "sven.stealLock",
"title": "Steal Lock",
"category": "SVN",
"icon": "$(key)"
},
{
"command": "sven.toggleNeedsLock",
"title": "Toggle Require Lock (needs-lock)",
"category": "SVN",
"icon": "$(shield)"
},
{
"command": "sven.setDepth",
"title": "Set Download Scope (Depth)...",
"category": "SVN",
"icon": "$(folder)"
},
{
"command": "sven.sparse.refresh",
"title": "Refresh",
"category": "SVN",
"icon": "$(refresh)"
},
{
"command": "sven.sparse.checkout",
"title": "Download...",
"category": "SVN",
"icon": "$(cloud-download)"
},
{
"command": "sven.sparse.exclude",
"title": "Remove from Disk",
"category": "SVN",
"icon": "$(eye-closed)"
},
{
"command": "sven.removeUnversioned",
"title": "Remove unversioned files",
"category": "SVN"
},
{
"command": "sven.renameExplorer",
"title": "Rename...",
"category": "SVN"
},
{
"command": "sven.repolog.copymsg",
"category": "SVN",
"title": "Copy message"
},
{
"command": "sven.repolog.copyrevision",
"category": "SVN",
"title": "Copy revision number"
},
{
"command": "sven.repolog.openDiff",
"category": "SVN",
"title": "Open diff"
},
{
"command": "sven.repolog.openFileLocal",
"category": "SVN",
"title": "Open Local Version"
},
{
"command": "sven.repolog.openFileRemote",
"category": "SVN",
"title": "Open This Revision"
},
{
"command": "sven.repolog.goToBase",
"category": "SVN",
"title": "Go to Your Version (BASE)",
"icon": "$(target)"
},
{
"command": "sven.repolog.refresh",
"category": "SVN",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "sven.repolog.fetch",
"category": "SVN",
"title": "Fetch",
"icon": "$(git-fetch)"
},
{
"command": "sven.repolog.remove",
"category": "SVN",
"title": "Remove"
},
{
"command": "sven.repolog.revealInExplorer",
"category": "SVN",
"title": "Reveal in File Explorer"
},
{
"command": "sven.repolog.diffWithExternalTool",
"category": "SVN",
"title": "Diff with External Tool"
},
{
"command": "sven.repolog.filterHistory",
"category": "SVN",
"title": "Filter History...",
"icon": "$(filter)"
},
{
"command": "sven.repolog.clearFilter",
"category": "SVN",
"title": "Clear Filters",
"icon": "$(clear-all)"
},
{
"command": "sven.resolve",
"title": "Resolve conflicts for selected",
"category": "SVN",
"icon": "$(check)"
},
{
"command": "sven.resolveAll",
"title": "Resolve all conflicts",
"category": "SVN"
},
{
"command": "sven.revert",
"title": "Revert",
"category": "SVN",
"icon": "$(discard)"
},
{
"command": "sven.stage",
"title": "Stage",
"category": "SVN",
"icon": "$(add)"
},
{
"command": "sven.stageAll",
"title": "Stage All",
"category": "SVN",
"icon": "$(add)"
},
{
"command": "sven.stageWithChildren",
"title": "Stage with Children",
"category": "SVN",
"icon": "$(files)"
},
{
"command": "sven.unstage",
"title": "Unstage",
"category": "SVN",
"icon": "$(remove)"
},
{
"command": "sven.unstageAll",
"title": "Unstage All",
"category": "SVN",
"icon": "$(remove)"
},
{
"command": "sven.revertAll",
"title": "Revert All Changes",
"category": "SVN",
"icon": "$(discard)"
},
{
"command": "sven.revertChange",
"title": "Revert Change",
"category": "SVN",
"icon": "$(discard)"
},
{
"command": "sven.revertExplorer",
"title": "Revert",
"category": "SVN",
"icon": "$(discard)"
},
{
"command": "sven.searchLogByRevision",
"title": "Search by Revision...",
"category": "SVN"
},
{
"command": "sven.searchLogByText",
"title": "Search History...",
"category": "SVN"
},
{
"command": "sven.switchBranch",
"title": "Switch Branch...",
"category": "SVN"
},
{
"command": "sven.treeview.pullIncomingChange",
"title": "Update selected",
"category": "SVN",
"icon": "$(cloud-download)"
},
{
"command": "sven.update",
"title": "Update",
"category": "SVN",
"icon": "$(repo-pull)"
},
{
"command": "sven.applyRecommendedSettings",
"title": "Apply Recommended Settings",
"category": "SVN",