SetShowHelp shows or hides the help view.
(v bool)
| 267 | |
| 268 | // SetShowHelp shows or hides the help view. |
| 269 | func (m *Model) SetShowHelp(v bool) { |
| 270 | m.showHelp = v |
| 271 | m.updatePagination() |
| 272 | } |
| 273 | |
| 274 | // ShowHelp returns whether or not the help is set to be rendered. |
| 275 | func (m Model) ShowHelp() bool { |
nothing calls this directly
no test coverage detected