(activeEditor: TextEditor)
| 37 | } |
| 38 | |
| 39 | export function getRelativePath(activeEditor: TextEditor) { |
| 40 | return _getPath(activeEditor, true).fsPath; |
| 41 | } |
| 42 | |
| 43 | export function getRelativePathWithLine(activeEditor: TextEditor) { |
| 44 | const active = _getPath(activeEditor, true); |
nothing calls this directly
no test coverage detected