(name: string)
| 32 | }; |
| 33 | |
| 34 | export const removeRecentRepository = (name: string) => { |
| 35 | const newRecords = getRecentRepositories().filter((record) => record.name !== name); |
| 36 | return getExtensionContext().globalState.update(RECENT_REPOSITORIES, newRecords); |
| 37 | }; |
| 38 | |
| 39 | export const getBrowserUrl = () => { |
| 40 | return vscode.commands.executeCommand('github1s.commands.vscode.getBrowserUrl'); |
no test coverage detected