()
| 269 | }; |
| 270 | |
| 271 | const commandCloseEditorGutterBlame = () => { |
| 272 | if (vscode.window.activeTextEditor) { |
| 273 | return EditorGitBlame.getInstance(vscode.window.activeTextEditor).close(); |
| 274 | } |
| 275 | }; |
| 276 | |
| 277 | export const registerBlameCommands = (context: vscode.ExtensionContext) => { |
| 278 | return context.subscriptions.push( |
nothing calls this directly
no test coverage detected