(activeEditor: TextEditor)
| 41 | } |
| 42 | |
| 43 | export function getRelativePathWithLine(activeEditor: TextEditor) { |
| 44 | const active = _getPath(activeEditor, true); |
| 45 | return `${active.fsPath}:${active.line}`; |
| 46 | } |
| 47 | |
| 48 | export function getRelativePathWithLineColumn(activeEditor: TextEditor) { |
| 49 | const active = _getPath(activeEditor, true); |
nothing calls this directly
no test coverage detected