summaryrefslogtreecommitdiff
path: root/internal/ui/table.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-28 09:48:27 +0200
committerPaul Buetow <paul@buetow.org>2026-04-07 09:24:18 +0300
commita37e561acddaaa63ca574788a0826755a2a7a446 (patch)
tree19a2bb54c77c249be9d670fa9a445f13b527c07c /internal/ui/table.go
parente2ef4d55f2da0959c832a530e68ea0f519bffdd1 (diff)
ui: add ultra mode navigation (vp)
Diffstat (limited to 'internal/ui/table.go')
-rw-r--r--internal/ui/table.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/ui/table.go b/internal/ui/table.go
index ad2795a..48ed9d5 100644
--- a/internal/ui/table.go
+++ b/internal/ui/table.go
@@ -514,6 +514,9 @@ func (m *Model) handleWindowResize(msg tea.WindowSizeMsg) (tea.Model, tea.Cmd) {
m.windowHeight = msg.Height
m.computeColumnWidths()
m.updateTableHeight()
+ if m.showUltra {
+ m.ultraEnsureVisible()
+ }
// Update help viewport if active
if m.showHelp && m.helpViewport.Width() > 0 {