CursorStart moves the cursor to the start of the input field.
()
| 227 | |
| 228 | // CursorStart moves the cursor to the start of the input field. |
| 229 | func (m *TextInputModel) CursorStart() { |
| 230 | m.cursorStart() |
| 231 | } |
| 232 | |
| 233 | // cursorStart moves the cursor to the start of the input field and returns |
| 234 | // whether or not the curosr blink should be reset. |
nothing calls this directly
no test coverage detected