SetSelectionStart sets the start of the selection
(pos Loc)
| 159 | |
| 160 | // SetSelectionStart sets the start of the selection |
| 161 | func (c *Cursor) SetSelectionStart(pos Loc) { |
| 162 | c.CurSelection[0] = pos |
| 163 | } |
| 164 | |
| 165 | // SetSelectionEnd sets the end of the selection |
| 166 | func (c *Cursor) SetSelectionEnd(pos Loc) { |
no outgoing calls