We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
del
1 parent 66f0f37 commit da772e5Copy full SHA for da772e5
src/commands/webSocketTerminal.ts
@@ -374,7 +374,7 @@ class WebSocketTerminal implements vscode.Pseudoterminal {
374
inputArr[inputArr.length - 1].slice(0, this._cursorCol - this._margin) +
375
inputArr[inputArr.length - 1].slice(this._cursorCol - this._margin + 1);
376
this._input = inputArr.join("\r\n");
377
- this._hideCursorWrite(actions.cursorForward + actions.deleteChar + actions.cursorBack);
+ this._hideCursorWrite(actions.deleteChar);
378
if (this._input != "" && this._state == "prompt" && this._syntaxColoringEnabled()) {
379
// Syntax color input
380
this._socket.send(JSON.stringify({ type: "color", input: this._input }));
0 commit comments