open-agents-ai 0.187.433 → 0.187.434
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -535566,7 +535566,7 @@ ${CONTENT_BG_SEQ}`);
|
|
|
535566
535566
|
const w = getTermWidth();
|
|
535567
535567
|
const pos = this.rowPositions(rows);
|
|
535568
535568
|
const inputWrap = this.wrapInput(w);
|
|
535569
|
-
const cursorRow = pos.inputStartRow + inputWrap.cursorRow;
|
|
535569
|
+
const cursorRow = pos.inputStartRow + 1 + inputWrap.cursorRow;
|
|
535570
535570
|
const cursorCol = inputWrap.cursorCol;
|
|
535571
535571
|
if (process.env.OA_DEBUG_CURSOR === "1") {
|
|
535572
535572
|
console.error(`[CURSOR DEBUG] parkCursorInInput: row=${cursorRow}, col=${cursorCol}, inputStartRow=${pos.inputStartRow}, cursorRow=${inputWrap.cursorRow}, writeDepth=${this.writeDepth}`);
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-agents-ai",
|
|
3
|
-
"version": "0.187.
|
|
3
|
+
"version": "0.187.434",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "open-agents-ai",
|
|
9
|
-
"version": "0.187.
|
|
9
|
+
"version": "0.187.434",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "CC-BY-NC-4.0",
|
|
12
12
|
"dependencies": {
|
package/package.json
CHANGED