(existing: string | null)
| 125 | } |
| 126 | |
| 127 | protected createTermOptions(existing: string | null): IPtyTerminalOptions { |
| 128 | const ret: IPtyTerminalOptions = { |
| 129 | name: RTTTerminal.createTermName(this.options, existing), |
| 130 | prompt: this.createPrompt(), |
| 131 | inputMode: this.options.inputmode || TerminalInputMode.COOKED |
| 132 | }; |
| 133 | return ret; |
| 134 | } |
| 135 | |
| 136 | protected createTerminal() { |
| 137 | this.ptyTerm = new PtyTerminal(this.createTermOptions(null)); |
no test coverage detected