| 144 | }; |
| 145 | |
| 146 | interface RunCommandOptions { |
| 147 | rootDir: vscode.Uri; |
| 148 | title: string; |
| 149 | command: string; |
| 150 | errorMessage?: string; |
| 151 | callback?: () => void | Promise<void>; |
| 152 | } |
| 153 | |
| 154 | export const createOrGetTerminal = () => { |
| 155 | const terminals = vscode.window.terminals; |
nothing calls this directly
no outgoing calls
no test coverage detected