pty-manager 1.9.3 → 1.9.4
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 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/dist/pty-worker.js +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1270,6 +1270,8 @@ var PTYSession = class _PTYSession extends import_events.EventEmitter {
|
|
|
1270
1270
|
const keyList = Array.isArray(keys) ? keys : [keys];
|
|
1271
1271
|
const normalized = _PTYSession.normalizeKeyList(keyList);
|
|
1272
1272
|
this._stallEmissionCount = 0;
|
|
1273
|
+
this._lastBlockingPromptHash = null;
|
|
1274
|
+
this.outputBuffer = "";
|
|
1273
1275
|
this.resetStallTimer();
|
|
1274
1276
|
for (const key of normalized) {
|
|
1275
1277
|
const sequence = SPECIAL_KEYS[key];
|