(activeEditor: TextEditor)
| 27 | } |
| 28 | |
| 29 | export function getPathWithLineColumn(activeEditor: TextEditor) { |
| 30 | const active = _getPath(activeEditor, false); |
| 31 | return `${active.fsPath}:${active.line}:${active.col}`; |
| 32 | } |
| 33 | |
| 34 | export function getDirectoryPath(activeEditor: TextEditor) { |
| 35 | const active = _getPath(activeEditor, false); |
nothing calls this directly
no test coverage detected