open-agents-ai 0.139.1 → 0.139.2
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 +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -38675,6 +38675,9 @@ async function startNeovimMode(opts) {
|
|
|
38675
38675
|
stdin.setRawMode(true);
|
|
38676
38676
|
}
|
|
38677
38677
|
stdin.resume();
|
|
38678
|
+
if (isTTY5) {
|
|
38679
|
+
process.stdout.write("\x1B[?1002h\x1B[?1006h");
|
|
38680
|
+
}
|
|
38678
38681
|
state.stdinHandler = (data) => {
|
|
38679
38682
|
if (state.cleanedUp)
|
|
38680
38683
|
return;
|
|
@@ -38892,6 +38895,7 @@ function toggleFocus(state) {
|
|
|
38892
38895
|
if (state.stdinHandler) {
|
|
38893
38896
|
stdin.on("data", state.stdinHandler);
|
|
38894
38897
|
}
|
|
38898
|
+
process.stdout.write("\x1B[?1002h\x1B[?1006h");
|
|
38895
38899
|
if (state.nvim) {
|
|
38896
38900
|
state.nvim.command("redraw!").catch(() => {
|
|
38897
38901
|
});
|
package/package.json
CHANGED