(chunks: RMarkdownChunk[] = _getChunks(),
line: number = _getStartLine())
| 374 | } |
| 375 | |
| 376 | export function goToNextChunk(chunks: RMarkdownChunk[] = _getChunks(), |
| 377 | line: number = _getStartLine()): void { |
| 378 | const nextChunk = getNextChunk(chunks, line); |
| 379 | if (nextChunk) { |
| 380 | void goToChunk(nextChunk); |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | export function selectCurrentChunk(chunks: RMarkdownChunk[] = _getChunks(), |
| 385 | line: number = _getStartLine()): void { |
nothing calls this directly
no test coverage detected