()
| 232 | } |
| 233 | |
| 234 | public sendKeyPress(): void { |
| 235 | // NOTE: This is a regular character instead of something like \0 |
| 236 | // because non-printing characters can cause havoc with different |
| 237 | // languages and terminal settings. We discard the character server-side |
| 238 | // anyway, so it doesn't matter what we send. |
| 239 | this.consoleTerminal?.sendText("p", false); |
| 240 | } |
| 241 | |
| 242 | private isLoginShell(pwshPath: string): boolean { |
| 243 | try { |
no outgoing calls
no test coverage detected