(term: vscode.Terminal)
| 298 | } |
| 299 | |
| 300 | function setFocus(term: vscode.Terminal) { |
| 301 | const focus: string = config().get('source.focus') || 'editor'; |
| 302 | if (focus !== 'none') { |
| 303 | term.show(focus !== 'terminal'); |
| 304 | } |
| 305 | } |
| 306 | |
| 307 | export async function sendRangeToRepl(rng: vscode.Range): Promise<void> { |
| 308 | const editor = vscode.window.activeTextEditor; |
no test coverage detected