From 6db2cbae9f835332ba5f346fc5e252bb38d1e514 Mon Sep 17 00:00:00 2001 From: punkfairie <23287005+punkfairie@users.noreply.github.com> Date: Sat, 7 Sep 2024 19:41:17 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(ui):=20full-screen=20mode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 3ca95ff..c0378e4 100644 --- a/main.go +++ b/main.go @@ -152,7 +152,7 @@ func (m menu) View() string { } func main() { - p := tea.NewProgram(initialModel()) + p := tea.NewProgram(initialModel(), tea.WithAltScreen()) if _, err := p.Run(); err != nil { fmt.Printf("There's been an error: %v", err)