* Set cursor column and clear preferredVisualCol. * Use this for all non-vertical cursor movements to reset sticky column behavior.
(col: number)
| 1429 | * Use this for all non-vertical cursor movements to reset sticky column behavior. |
| 1430 | */ |
| 1431 | private setCursorCol(col: number): void { |
| 1432 | this.state.cursorCol = col; |
| 1433 | this.preferredVisualCol = null; |
| 1434 | this.snappedFromCursorCol = null; |
| 1435 | } |
| 1436 | |
| 1437 | /** |
| 1438 | * Move cursor to a target visual line, applying sticky column logic. |
no outgoing calls
no test coverage detected