opencode-miniterm 1.0.15 → 1.0.16
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/package.json +1 -1
- package/src/input.ts +3 -0
package/package.json
CHANGED
package/src/input.ts
CHANGED
|
@@ -329,6 +329,9 @@ async function acceptInput(state: State): Promise<void> {
|
|
|
329
329
|
const input = inputBuffer.trim();
|
|
330
330
|
|
|
331
331
|
oldInputBuffer = "";
|
|
332
|
+
oldWrappedRows = 0;
|
|
333
|
+
oldCursorRow = 0;
|
|
334
|
+
|
|
332
335
|
inputBuffer = "";
|
|
333
336
|
cursorPosition = 0;
|
|
334
337
|
completionCycling = false;
|