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 8738c0a commit 8eb57ecCopy full SHA for 8eb57ec
client/src/setupCommands.ts
@@ -37,11 +37,13 @@ export function setupCommands(context: ExtensionContext) {
37
});
38
state.terminal = window.createTerminal("Sketch");
39
terminal = state.terminal;
40
+ // Show the terminal panel the first time
41
+ terminal.show(true);
42
+ } else {
43
+ // Send the command to the terminal
44
+ terminal.sendText('\x03', false);
45
}
46
- // Show the terminal panel
- terminal.show(true);
-
47
// clear the terminal
48
terminal.sendText("clear", true);
49
0 commit comments