()
| 206 | |
| 207 | // Helpers |
| 208 | function _getChunks(): RMarkdownChunk[] { |
| 209 | const textEditor = vscode.window.activeTextEditor; |
| 210 | if (!textEditor) { |
| 211 | return []; |
| 212 | } |
| 213 | return getChunks(textEditor.document); |
| 214 | } |
| 215 | function _getStartLine(): number { |
| 216 | const textEditor = vscode.window.activeTextEditor; |
| 217 | if (!textEditor) { |
no test coverage detected