Browse Source

Learning to interact with the terminal.

Marcelo Fornet 5 năm trước cách đây
mục cha
commit
23013ec90c
2 tập tin đã thay đổi với 22 bổ sung2 xóa
  1. 22 0
      src/extension.ts
  2. 0 2
      todo.md

+ 22 - 0
src/extension.ts

@@ -219,7 +219,29 @@ async function addTestcase() {
     await vscode.commands.executeCommand("vscode.open", vscode.Uri.file(out), vscode.ViewColumn.Two);
 }
 
+function getTerminal() {
+    let target = undefined;
+
+    vscode.window.terminals.forEach(value => {
+        if (value.name === 'acmx-output') {
+            target = value;
+        }
+    });
+
+    if (target === undefined) {
+        target = vscode.window.createTerminal("acmx-output");
+    }
+
+    return target;
+}
+
 async function coding() {
+    let terminal = getTerminal();
+
+    let result = terminal.sendText('echo "Hello"');
+    terminal.show();
+    console.log(result);
+
     let path = currentProblem();
 
     if (path === undefined){

+ 0 - 2
todo.md

@@ -11,8 +11,6 @@
 
 ## QUICK TODO
 
-* Use better names for single problems.
-* Test add problem/add contest with codeforces problems (mostly folder and names where are created)
 * Test and provide example using other languages.
 * Copy to clipboard (smart copy in the future with tool suggested by jcg) (Find in examples, create shortcut)