(s: SelectionState)
| 114 | } |
| 115 | |
| 116 | export function finishSelection(s: SelectionState): void { |
| 117 | s.isDragging = false |
| 118 | // Keep anchor/focus so highlight stays visible and text can be copied. |
| 119 | // Clear via clearSelection() on Esc or after copy. |
| 120 | } |
| 121 | |
| 122 | export function clearSelection(s: SelectionState): void { |
| 123 | s.anchor = null |
no outgoing calls
no test coverage detected