diff options
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/tasks.json | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json index fabf8e3..8b127c4 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,7 +2,7 @@ "version": "2.0.0", "tasks": [ { - "label": "Debug-Boot in QEMU", + "label": "QEMU (gdb)", "command": "qemu-system-x86_64", "type": "shell", "args": [ @@ -18,10 +18,21 @@ "reveal": "always" }, "group": "none", - "problemMatcher": [] + "problemMatcher": [ + { + "pattern": { + "regexp": "." + }, + "background": { + "activeOnStart": true, + "beginsPattern": ".", + "endsPattern": "VNC server running on" + } + } + ] }, { - "label": "Boot in QEMU", + "label": "QEMU", "command": "qemu-system-x86_64", "type": "shell", "args": [ |
