mirror of
https://github.com/hexedtech/codemp-vscode.git
synced 2024-11-22 07:24: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,
|
||||
startCol: selection.anchor.character,
|
||||
endRow: selection.active.line,
|
||||
endCol: selection.active.character + 1,
|
||||
endCol: selection.active.character,
|
||||
buffer: buffer,
|
||||
user: undefined,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue