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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/input.ts +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-miniterm",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "A small front-end terminal UI for OpenCode",
5
5
  "main": "src/index.ts",
6
6
  "bin": {
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;