open-agents-ai 0.187.124 → 0.187.126
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 +2 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -285375,7 +285375,7 @@ async function startNeovimMode(opts) {
|
|
|
285375
285375
|
const ptyRows = Math.max(5, opts.contentRows);
|
|
285376
285376
|
if (isTTY5) {
|
|
285377
285377
|
const L = layout();
|
|
285378
|
-
const bottomBound =
|
|
285378
|
+
const bottomBound = L.contentBottom;
|
|
285379
285379
|
process.stdout.write(
|
|
285380
285380
|
`\x1B[${L.contentTop};${bottomBound}r\x1B[${L.contentTop};1H`
|
|
285381
285381
|
);
|
|
@@ -285435,7 +285435,7 @@ async function startNeovimMode(opts) {
|
|
|
285435
285435
|
{ label: " redo ", action: "redo" },
|
|
285436
285436
|
{ label: " save ", action: "save" }
|
|
285437
285437
|
];
|
|
285438
|
-
let col =
|
|
285438
|
+
let col = 4;
|
|
285439
285439
|
for (const b of btns) {
|
|
285440
285440
|
toolbarBtns.push({ label: b.label, startCol: col, endCol: col + b.label.length - 1, action: b.action });
|
|
285441
285441
|
col += b.label.length + 1;
|
|
@@ -285447,7 +285447,6 @@ async function startNeovimMode(opts) {
|
|
|
285447
285447
|
const hdrRow = L.headerContent;
|
|
285448
285448
|
const fg2 = 252;
|
|
285449
285449
|
let buf = "\x1B7";
|
|
285450
|
-
buf += `\x1B[${hdrRow};1H\x1B[49m\x1B[2K`;
|
|
285451
285450
|
for (const btn of toolbarBtns) {
|
|
285452
285451
|
buf += `\x1B[${hdrRow};${btn.startCol}H`;
|
|
285453
285452
|
buf += `\x1B]8;;oa-cmd:${btn.action}\x07`;
|
package/package.json
CHANGED