(mode: 'prompt' | 'bash')
| 915 | } |
| 916 | |
| 917 | handleInputModeChange(mode: 'prompt' | 'bash'): void { |
| 918 | this.setAppState({ inputMode: mode }); |
| 919 | this.updateEditorBorderHighlight(); |
| 920 | } |
| 921 | |
| 922 | handleUserInput(text: string): void { |
| 923 | const wasBashMode = this.state.appState.inputMode === 'bash'; |
no test coverage detected