Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 8x 8x 8x 9x 9x 9x 3x 6x 6x 8x | import * as vscode from 'vscode';
/**
* Get the delta of lines caused by a workspace edit.
* @param edit A workspace edit.
* @returns The delta of lines caused by the edit.
*/
export function calculateLineOffset(edit: vscode.WorkspaceEdit): number {
let lineOffset = 0;
for (const [uri, edits] of edit.entries()) {
for (const e of edits) {
const startLine = e.range.start.line;
const endLine = e.range.end.line;
if (e.newText === '') {
// Deletion
lineOffset -= (endLine - startLine);
} else {
// Insertion or Replacement
const newLines = e.newText.split('\n').length - 1;
lineOffset += newLines - (endLine - startLine);
}
}
}
return lineOffset;
} |