You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
576 B
Markdown
16 lines
576 B
Markdown
---
|
|
# 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.
|