fixed incorrect reporting of cursor position

This commit is contained in:
anthony 2023-09-19 13:14:24 -05:00
parent 5e120d1749
commit 6748b8966e
1 changed files with 1 additions and 1 deletions

View File

@ -1050,7 +1050,7 @@ exports.FullScreenEditorModule =
posView.setText(
_.padStart(String(pos.row + 1), 2, '0') +
',' +
_.padEnd(String(pos.col + 1), 2, '0')
_.padStart(String(pos.col + 1), 2, '0')
);
this.client.term.rawWrite(ansi.restorePos());
}