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.
1 parent b320f47 commit 16d9687Copy full SHA for 16d9687
csp/webTerminal/js/terminal.js.xml
@@ -862,6 +862,8 @@ var terminal = new function() {
862
intervalID = -1,
863
interval = 1000,
864
check = function() {
865
+ if (terminal.mode === terminal.modes.CLEAR_IO ||
866
+ terminal.mode === terminal.modes.SQL) return;
867
try {
868
server.submit(terminal.serverActions.CHECK_WATCH)
869
} catch (e) {
@@ -1272,6 +1274,7 @@ var terminal = new function() {
1272
1274
if (readChar) {
1273
1275
readChar = false;
1276
server.submit("",String.fromCharCode(key),true);
1277
+ terminal.output.write(String.fromCharCode(key));
1278
hid.preventDefault(event);
1279
this.clear();
1280
return false;
0 commit comments