(uri: vscode.Uri)
| 243 | } |
| 244 | |
| 245 | async pushUri(uri: vscode.Uri) { |
| 246 | await vscode.window.withProgress({ location: vscode.ProgressLocation.SourceControl }, async progress => { |
| 247 | let index = await this.readIndexFile(); |
| 248 | await this.pushSingleChange(uri, index); |
| 249 | |
| 250 | await this.syncWorkspace(); |
| 251 | await this.apiClient.reloadGuildVm(index.guild.id); |
| 252 | }); |
| 253 | } |
| 254 | |
| 255 | async pushAll() { |
| 256 | await vscode.window.withProgress({ location: vscode.ProgressLocation.SourceControl }, async progress => { |
nothing calls this directly
no test coverage detected