--- # claudbg-trk3 title: 'TUI: Shift+G jumps to bottom of transcript' status: completed type: feature priority: normal created_at: 2026-03-31T23:45:17Z updated_at: 2026-04-01T05:53:50Z --- Add Shift+G keybinding in the transcript view to jump to the bottom of the transcript (vim-style G navigation). ## Summary of Changes Added `KeyCode::Char('G')` arm in `handle_transcript_event`: computes total rendered lines via `build_chat_lines` and sets `transcript_scroll` to `total_lines.saturating_sub(page_height)` — same clamping as PageDown, but jumps directly to bottom.