| 37 | } |
| 38 | |
| 39 | export interface RSelection { |
| 40 | linesDownToMoveCursor: number; |
| 41 | selectedText: string; |
| 42 | startLine: number; |
| 43 | endLine: number; |
| 44 | range: Range; |
| 45 | } |
| 46 | |
| 47 | export function getSelection(): RSelection | undefined { |
| 48 | const textEditor = window.activeTextEditor; |
nothing calls this directly
no outgoing calls
no test coverage detected