Handle UDAs for editing; Fix layout; Add annotations

This commit is contained in:
Martin
2024-06-09 17:55:56 +02:00
parent 3e1cb9d1bc
commit bafd8958d4
12 changed files with 663 additions and 476 deletions

View File

@ -52,9 +52,9 @@ func prevArea() tea.Cmd {
}
}
type changeAreaMsg area
type changeAreaMsg int
func changeArea(a area) tea.Cmd {
func changeArea(a int) tea.Cmd {
return func() tea.Msg {
return changeAreaMsg(a)
}