Start moves the cursor to the start of the line it is on
()
| 106 | |
| 107 | // Start moves the cursor to the start of the line it is on |
| 108 | func (c *Cursor) Start() { |
| 109 | c.X = 0 |
| 110 | c.StoreVisualX() |
| 111 | } |
| 112 | |
| 113 | // StartOfText moves the cursor to the first non-whitespace rune of |
| 114 | // the line it is on |
no test coverage detected