()
| 263 | }; |
| 264 | |
| 265 | const commandOpenEditorGutterBlame = () => { |
| 266 | if (vscode.window.activeTextEditor) { |
| 267 | return EditorGitBlame.getInstance(vscode.window.activeTextEditor).open(); |
| 268 | } |
| 269 | }; |
| 270 | |
| 271 | const commandCloseEditorGutterBlame = () => { |
| 272 | if (vscode.window.activeTextEditor) { |
nothing calls this directly
no test coverage detected