mirror of
https://github.com/hexedtech/codemp-vscode.git
synced 2024-11-22 15:34:49 +01:00
fix: off by one cursor
This commit is contained in:
parent
4f16b46223
commit
e6b86d3cff
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ export async function join(selected: vscode.TreeItem | undefined) {
|
||||||
startRow: selection.anchor.line,
|
startRow: selection.anchor.line,
|
||||||
startCol: selection.anchor.character,
|
startCol: selection.anchor.character,
|
||||||
endRow: selection.active.line,
|
endRow: selection.active.line,
|
||||||
endCol: selection.active.character + 1,
|
endCol: selection.active.character,
|
||||||
buffer: buffer,
|
buffer: buffer,
|
||||||
user: undefined,
|
user: undefined,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue