You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,11 +92,11 @@ Example:
92
92
|`svn.path`|Path to the svn executable|`null`|
93
93
|`svn.ignoreMissingSvnWarning`|Ignores the warning when SVN is missing|`false`|
94
94
|`svn.diff.withHead`|Show diff changes using latest revision in the repository. Set false to use latest revision in local folder|`true`|
95
-
|`svn.layout.trunkRegex`|Regex to detect path for 'trunk' in SVN URL, 'null' to disable. (Ex.: '(trunk)', '(main)')|`"(trunk)"`|
95
+
|`svn.layout.trunkRegex`|Regex to detect path for 'trunk' in SVN URL, 'null' to disable. (Ex.: '(trunk)', '(main)')|`"(trunk)(/.*)?"`|
96
96
|`svn.layout.trunkRegexName`|Regex group position for name of trunk|`1`|
97
-
|`svn.layout.branchesRegex`|Regex to detect path for 'branches' in SVN URL, 'null' to disable. Subpath use 'branches/.\*/(.\*)' (Ex.: 'branches/.\*/(.\*)', 'versions/(.\*)')|`"branches/(.*)"`|
97
+
|`svn.layout.branchesRegex`|Regex to detect path for 'branches' in SVN URL, 'null' to disable. Subpath use 'branches/[^/]+/([^/]+)(/.\*)?' (Ex.: 'branches/...', 'versions/...')|`"branches/([^/]+)(/.*)?"`|
98
98
|`svn.layout.branchesRegexName`|Regex group position for name of branch|`1`|
99
-
|`svn.layout.tagsRegex`|Regex to detect path for 'tags' in SVN URL, 'null' to disable. Subpath use 'tags/.\*/(.\*)'. (Ex.: 'tags/(.\*)', 'stamps/(.\*)')|`"tags/(.*)"`|
99
+
|`svn.layout.tagsRegex`|Regex to detect path for 'tags' in SVN URL, 'null' to disable. Subpath use 'tags/[^/]+/([^/]+)(/.\*)?'. (Ex.: 'tags/...', 'stamps/...')|`"tags/([^/]+)(/.*)?"`|
100
100
|`svn.layout.tagRegexName`|Regex group position for name of tag|`1`|
101
101
|`svn.layout.showFullName`|Set true to show 'branches/\<name\>' and false to show only '\<name\>'|`true`|
102
102
|`svn.multipleFolders.enabled`|Allow to find subfolders using SVN|`false`|
@@ -111,3 +111,4 @@ Example:
111
111
|`svn.conflicts.autoResolve`|Set file to status resolved after fix conflictss|`false`|
112
112
|`svn.update.ignoreExternals`|Set to ignore externals definitions on update (add --ignore-externals)|`true`|
113
113
|`svn.default.encoding`|Encoding of svn output if the output is not utf-8. When this parameter is null, the encoding is automatically detected. Example: 'windows-1252'.|`null`|
114
+
|`svn.showUpdateMessage`|Show the update message when update is run|`true`|
Copy file name to clipboardExpand all lines: package.json
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -502,7 +502,7 @@
502
502
"null"
503
503
],
504
504
"description": "Regex to detect path for 'trunk' in SVN URL, 'null' to disable. (Ex.: '(trunk)', '(main)')",
505
-
"default": "(trunk)"
505
+
"default": "(trunk)(/.*)?"
506
506
},
507
507
"svn.layout.trunkRegexName": {
508
508
"type": [
@@ -516,8 +516,8 @@
516
516
"string",
517
517
"null"
518
518
],
519
-
"description": "Regex to detect path for 'branches' in SVN URL, 'null' to disable. Subpath use 'branches/.*/(.*)' (Ex.: 'branches/.*/(.*)', 'versions/(.*)')",
520
-
"default": "branches/(.*)"
519
+
"description": "Regex to detect path for 'branches' in SVN URL, 'null' to disable. Subpath use 'branches/[^/]+/([^/]+)(/.*)?' (Ex.: 'branches/...', 'versions/...')",
520
+
"default": "branches/([^/]+)(/.*)?"
521
521
},
522
522
"svn.layout.branchesRegexName": {
523
523
"type": [
@@ -531,8 +531,8 @@
531
531
"string",
532
532
"null"
533
533
],
534
-
"description": "Regex to detect path for 'tags' in SVN URL, 'null' to disable. Subpath use 'tags/.*/(.*)'. (Ex.: 'tags/(.*)', 'stamps/(.*)')",
535
-
"default": "tags/(.*)"
534
+
"description": "Regex to detect path for 'tags' in SVN URL, 'null' to disable. Subpath use 'tags/[^/]+/([^/]+)(/.*)?'. (Ex.: 'tags/...', 'stamps/...')",
0 commit comments