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
@@ -61,46 +61,121 @@ If you use [TortoiseSVN](https://tortoisesvn.net/), make sure the option
61
61
Please use a dedicated extension like [blamer-vs](https://marketplace.visualstudio.com/items?itemName=beaugust.blamer-vs)
62
62
63
63
## Settings
64
-
Here is a table of settings with their default values. To change any of these, add the relevant Config key and value to your VSCode settings.json file.
65
-
66
-
|Config|Description|Default|
67
-
|-|-|-|
68
-
|`svn.enabled`|Whether svn is enabled|`true`|
69
-
|`svn.enableProposedApi`|Allow usage of proposed APIs of VSCode. set 'product' to auto-edit product.json, set 'argument' to allow with start argument, set 'none' to not prompt|`null`|
70
-
|`svn.autorefresh`|Whether auto refreshing is enabled|`true`|
71
-
|`svn.decorations.enabled`|Controls if SVN contributes colors and badges to the explorer and the open (VSCode \>= 1.18 with proposed-api)|`true`|
72
-
|`svn.path`|Path to the svn executable|`null`|
73
-
|`svn.defaultCheckoutDirectory`|The default location to checkout a svn repository.|`null`|
74
-
|`svn.ignoreRepositories`|List of SVN repositories to ignore.|`null`|
75
-
|`svn.ignoreMissingSvnWarning`|Ignores the warning when SVN is missing|`false`|
76
-
|`svn.ignoreWorkingCopyIsTooOld`|Ignores the warning when working copy is too old|`false`|
77
-
|`svn.diff.withHead`|Show diff changes using latest revision in the repository. Set false to use latest revision in local folder|`true`|
78
-
|`svn.layout.trunkRegex`|Regex to detect path for 'trunk' in SVN URL, 'null' to disable. (Ex.: '(trunk)', '(main)')|`"(trunk)(/.*)?"`|
79
-
|`svn.layout.trunkRegexName`|Regex group position for name of trunk|`1`|
80
-
|`svn.layout.branchesRegex`|Regex to detect path for 'branches' in SVN URL, 'null' to disable. Subpath use 'branches/[^/]+/([^/]+)(/.\*)?' (Ex.: 'branches/...', 'versions/...')|`"branches/([^/]+)(/.*)?"`|
81
-
|`svn.layout.branchesRegexName`|Regex group position for name of branch|`1`|
82
-
|`svn.layout.tagsRegex`|Regex to detect path for 'tags' in SVN URL, 'null' to disable. Subpath use 'tags/[^/]+/([^/]+)(/.\*)?'. (Ex.: 'tags/...', 'stamps/...')|`"tags/([^/]+)(/.*)?"`|
83
-
|`svn.layout.tagRegexName`|Regex group position for name of tag|`1`|
84
-
|`svn.layout.showFullName`|Set true to show 'branches/\<name\>' and false to show only '\<name\>'|`true`|
85
-
|`svn.multipleFolders.enabled`|Allow to find subfolders using SVN|`false`|
86
-
|`svn.multipleFolders.depth`|Maximum depth to find subfolders using SVN|`4`|
87
-
|`svn.multipleFolders.ignore`|Folders to ignore using SVN|`["**/.git","**/.hg","**/vendor","**/node_modules"]`|
88
-
|`svn.sourceControl.ignoreOnCommit`|Changelists to ignore on commit|`["ignore-on-commit"]`|
89
-
|`svn.sourceControl.ignoreOnStatusCount`|Changelists to ignore on status count|`["ignore-on-commit"]`|
90
-
|`svn.detectExternals`|Controls whether to automatically detect svn externals.|`true`|
91
-
|`svn.detectIgnored`|Controls whether to automatically detect svn on ignored folders.|`true`|
92
-
|`svn.sourceControl.combineExternalIfSameServer`|Combine the svn external in the main if is from the same server.|`false`|
93
-
|`svn.sourceControl.countUnversioned`|Allow to count unversioned files in status count|`true`|
94
-
|`svn.log.length`|Number of commit messages to log|`50`|
95
-
|`svn.showOutput`|Show the output window when the extension starts|`false`|
96
-
|`svn.conflicts.autoResolve`|Set file to status resolved after fix conflicts|`false`|
97
-
|`svn.update.ignoreExternals`|Set to ignore externals definitions on update (add --ignore-externals)|`true`|
98
-
|`svn.delete.actionForDeletedFiles`|When a file is deleted, what SVN should do? `none` - Do nothing, `prompt` - Ask the action, `remove` - automatically remove from SVN|`"prompt"`|
99
-
|`svn.delete.ignoredRulesForDeletedFiles`|Ignored files/rules for `svn.delete.actionForDeletedFiles`(Ex.: file.txt or \*\*/\*.txt)|`[]`|
100
-
|`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`|
101
-
|`svn.showUpdateMessage`|Show the update message when update is run|`true`|
102
-
|`svn.remoteChanges.checkFrequency`|Set the interval in seconds to check changed files on remote repository and show in statusbar. 0 to disable|`300`|
103
-
|`svn.sourceControl.hideUnversioned`|Hide unversioned files in Source Control UI|`false`|
104
-
|`svn.refresh.remoteChanges`|Refresh remote changes on refresh command|`false`|
105
-
|`svn.sourceControl.changesLeftClick`|Set left click functionality on changes resource state|`"open diff"`|
106
-
|`svn.gravatars.enabled`|Use garavatar icons in log viewers|`true`|
64
+
Here are all of the extension settings with their default values. To change any of these, add the relevant Config key and value to your VSCode settings.json file. Alternatively search for the config key in the settings UI to change its value.
65
+
66
+
<!--begin-settings-->
67
+
```js
68
+
{
69
+
// Whether auto refreshing is enabled
70
+
"svn.autorefresh":true,
71
+
72
+
// Set file to status resolved after fix conflicts
73
+
"svn.conflicts.autoResolve":null,
74
+
75
+
// Encoding of svn output if the output is not utf-8. When this parameter is null, the encoding is automatically detected. Example: 'windows-1252'.
76
+
"svn.default.encoding":null,
77
+
78
+
// The default location to checkout a svn repository.
79
+
"svn.defaultCheckoutDirectory":null,
80
+
81
+
// When a file is deleted, what SVN should do? `none` - Do nothing, `prompt` - Ask the action, `remove` - automatically remove from SVN
0 commit comments