|
16 | 16 | "bugs": { |
17 | 17 | "url": "https://github.com/JohnstonCode/svn-scm/issues" |
18 | 18 | }, |
19 | | - "categories": ["Other", "SCM Providers"], |
20 | | - "keywords": ["multi-root ready", "scm", "svn"], |
21 | | - "activationEvents": ["*"], |
| 19 | + "categories": [ |
| 20 | + "Other", |
| 21 | + "SCM Providers" |
| 22 | + ], |
| 23 | + "keywords": [ |
| 24 | + "multi-root ready", |
| 25 | + "scm", |
| 26 | + "svn" |
| 27 | + ], |
| 28 | + "activationEvents": [ |
| 29 | + "*" |
| 30 | + ], |
22 | 31 | "main": "./out/extension", |
23 | 32 | "scripts": { |
24 | 33 | "vscode:prepublish": "tsc -p ./", |
|
89 | 98 | "command": "svn.update", |
90 | 99 | "title": "Svn update", |
91 | 100 | "category": "SVN" |
| 101 | + }, |
| 102 | + { |
| 103 | + "command": "svn.patch", |
| 104 | + "title": "Svn patch", |
| 105 | + "category": "SVN" |
92 | 106 | } |
93 | 107 | ], |
94 | 108 | "menus": { |
|
106 | 120 | { |
107 | 121 | "command": "svn.update", |
108 | 122 | "when": "config.svn.enabled" |
| 123 | + }, |
| 124 | + { |
| 125 | + "command": "svn.patch", |
| 126 | + "when": "config.svn.enabled" |
109 | 127 | } |
110 | 128 | ], |
111 | 129 | "scm/resourceGroup/context": [], |
|
142 | 160 | "default": true |
143 | 161 | }, |
144 | 162 | "svn.path": { |
145 | | - "type": ["string", "null"], |
| 163 | + "type": [ |
| 164 | + "string", |
| 165 | + "null" |
| 166 | + ], |
146 | 167 | "description": "Path to the svn executable", |
147 | 168 | "default": null, |
148 | 169 | "isExecutable": true |
149 | 170 | }, |
150 | 171 | "svn.diff.withHead": { |
151 | 172 | "type": "boolean", |
152 | | - "description": |
153 | | - "Show diff changes using latest revision in the repository. Set false to use latest revision in local folder", |
| 173 | + "description": "Show diff changes using latest revision in the repository. Set false to use latest revision in local folder", |
154 | 174 | "default": true |
155 | 175 | }, |
156 | 176 | "svn.layout.trunk": { |
157 | | - "type": ["string", "null"], |
158 | | - "description": |
159 | | - "Relative path for 'trunk' in SVN URL, 'null' to disable. (Ex.: 'trunk', 'main')", |
| 177 | + "type": [ |
| 178 | + "string", |
| 179 | + "null" |
| 180 | + ], |
| 181 | + "description": "Relative path for 'trunk' in SVN URL, 'null' to disable. (Ex.: 'trunk', 'main')", |
160 | 182 | "default": "trunk" |
161 | 183 | }, |
162 | 184 | "svn.layout.branches": { |
163 | | - "type": ["string", "null"], |
164 | | - "description": |
165 | | - "Relative path for 'branches' in SVN URL, 'null' to disable. (Ex.: 'branches', 'versions')", |
| 185 | + "type": [ |
| 186 | + "string", |
| 187 | + "null" |
| 188 | + ], |
| 189 | + "description": "Relative path for 'branches' in SVN URL, 'null' to disable. (Ex.: 'branches', 'versions')", |
166 | 190 | "default": "branches" |
167 | 191 | }, |
168 | 192 | "svn.layout.tags": { |
169 | | - "type": ["string", "null"], |
170 | | - "description": |
171 | | - "Relative path for 'tags' in SVN URL, 'null' to disable. (Ex.: 'tags', 'stamps')", |
| 193 | + "type": [ |
| 194 | + "string", |
| 195 | + "null" |
| 196 | + ], |
| 197 | + "description": "Relative path for 'tags' in SVN URL, 'null' to disable. (Ex.: 'tags', 'stamps')", |
172 | 198 | "default": "tags" |
173 | 199 | }, |
174 | 200 | "svn.multipleFolders.enabled": { |
|
0 commit comments