Skip to content

Commit b7b8b9d

Browse files
committed
Fix tests
1 parent 2c9202a commit b7b8b9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/terminal/common/capabilities/commandDetection/promptInputModel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export class PromptInputModel extends Disposable implements IPromptInputModel {
148148
this._cursorIndex = -1;
149149
this._ghostTextIndex = -1;
150150
const event = this._createStateObject();
151-
if (this._lastUserInput !== '\u0003') {
151+
if (this._lastUserInput === '\u0003') {
152152
this._onDidInterrupt.fire(event);
153153
}
154154

0 commit comments

Comments
 (0)