diff options
| author | ewy <ewy0@protonmail.com> | 2026-04-29 00:47:34 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-04-29 00:47:34 +0200 |
| commit | 630d77e1962b43ee95e88a664f5e8b8993213060 (patch) | |
| tree | 8849c2a87443cd231786aed53b76dc7e4ea11aed /menu/menu.go | |
| parent | 8efcf029576ad82908b4ae80b2c92022dfb857d2 (diff) | |
big stuff
* send empty screen after tui confirmation
* add scroll view / viewport
* auto enable scroll view on short terminals
* add motd tips
* add subdirs as categories
* add inline toggle hotkey (i)
Diffstat (limited to 'menu/menu.go')
| -rw-r--r-- | menu/menu.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/menu/menu.go b/menu/menu.go index fdb1c6b..2677259 100644 --- a/menu/menu.go +++ b/menu/menu.go @@ -3,7 +3,6 @@ package menu import ( "errors" tea "github.com/charmbracelet/bubbletea" - "pik/flags" "pik/model" "pik/spool" ) @@ -17,9 +16,6 @@ func Show(st *model.State, hydrators []model.Modder) (*model.HydratedSource, mod } md := NewModel(st, hydrators) var opts []tea.ProgramOption - if !*flags.Inline { - opts = append(opts, tea.WithAltScreen()) - } program := tea.NewProgram(md, opts...) resultModel, err := program.Run() if err != nil { |
