()
| 118 | } |
| 119 | |
| 120 | export function getSshChannel(): vscode.OutputChannel { |
| 121 | if (!sshChannel) { |
| 122 | sshChannel = vscode.window.createOutputChannel(localize("c.cpp.ssh.channel", "{0}: SSH", "Cpptools")); |
| 123 | } |
| 124 | return sshChannel; |
| 125 | } |
| 126 | |
| 127 | export function showOutputChannel(): void { |
| 128 | getOutputChannel().show(); |
no outgoing calls
no test coverage detected