cursorStart moves the cursor to the start of the input field and returns whether or not the curosr blink should be reset.
()
| 233 | // cursorStart moves the cursor to the start of the input field and returns |
| 234 | // whether or not the curosr blink should be reset. |
| 235 | func (m *TextInputModel) cursorStart() bool { |
| 236 | return m.setCursor(0) |
| 237 | } |
| 238 | |
| 239 | // CursorEnd moves the cursor to the end of the input field |
| 240 | func (m *TextInputModel) CursorEnd() { |
no test coverage detected