feat: Auto-scroll to bottom via Events

feat: Auto-scroll to bottom on exiting mouse mode
This commit is contained in:
jacob314
2026-04-01 12:29:54 -07:00
parent fd8355472a
commit ff0902e608
5 changed files with 31 additions and 1 deletions
@@ -338,6 +338,10 @@ export const InputPrompt: React.FC<InputPromptProps> = ({
const showCursor =
focus && isShellFocused && !isEmbeddedShellFocused && !copyModeEnabled;
useEffect(() => {
appEvents.emit(AppEvent.ScrollToBottom);
}, [buffer.text, buffer.cursor]);
// Notify parent component about escape prompt state changes
useEffect(() => {
if (onEscapePromptChange) {