|
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": { |
|
142 | 156 | "default": true |
143 | 157 | }, |
144 | 158 | "svn.path": { |
145 | | - "type": ["string", "null"], |
| 159 | + "type": [ |
| 160 | + "string", |
| 161 | + "null" |
| 162 | + ], |
146 | 163 | "description": "Path to the svn executable", |
147 | 164 | "default": null, |
148 | 165 | "isExecutable": true |
149 | 166 | }, |
150 | 167 | "svn.diff.withHead": { |
151 | 168 | "type": "boolean", |
152 | | - "description": |
153 | | - "Show diff changes using latest revision in the repository. Set false to use latest revision in local folder", |
| 169 | + "description": "Show diff changes using latest revision in the repository. Set false to use latest revision in local folder", |
154 | 170 | "default": true |
155 | 171 | }, |
156 | 172 | "svn.layout.trunk": { |
157 | | - "type": ["string", "null"], |
158 | | - "description": |
159 | | - "Relative path for 'trunk' in SVN URL, 'null' to disable. (Ex.: 'trunk', 'main')", |
| 173 | + "type": [ |
| 174 | + "string", |
| 175 | + "null" |
| 176 | + ], |
| 177 | + "description": "Relative path for 'trunk' in SVN URL, 'null' to disable. (Ex.: 'trunk', 'main')", |
160 | 178 | "default": "trunk" |
161 | 179 | }, |
162 | 180 | "svn.layout.branches": { |
163 | | - "type": ["string", "null"], |
164 | | - "description": |
165 | | - "Relative path for 'branches' in SVN URL, 'null' to disable. (Ex.: 'branches', 'versions')", |
| 181 | + "type": [ |
| 182 | + "string", |
| 183 | + "null" |
| 184 | + ], |
| 185 | + "description": "Relative path for 'branches' in SVN URL, 'null' to disable. (Ex.: 'branches', 'versions')", |
166 | 186 | "default": "branches" |
167 | 187 | }, |
168 | 188 | "svn.layout.tags": { |
169 | | - "type": ["string", "null"], |
170 | | - "description": |
171 | | - "Relative path for 'tags' in SVN URL, 'null' to disable. (Ex.: 'tags', 'stamps')", |
| 189 | + "type": [ |
| 190 | + "string", |
| 191 | + "null" |
| 192 | + ], |
| 193 | + "description": "Relative path for 'tags' in SVN URL, 'null' to disable. (Ex.: 'tags', 'stamps')", |
172 | 194 | "default": "tags" |
173 | 195 | }, |
174 | 196 | "svn.multipleFolders.enabled": { |
|
0 commit comments