(list *tview.List)
| 31 | } |
| 32 | |
| 33 | func jumpListTop(list *tview.List) { |
| 34 | if list == nil || list.GetItemCount() == 0 { |
| 35 | return |
| 36 | } |
| 37 | list.SetCurrentItem(0) |
| 38 | } |
| 39 | |
| 40 | func jumpListBottom(list *tview.List) { |
| 41 | if list == nil { |
no test coverage detected