This commit is contained in:
2018-08-08 18:08:53 +02:00
parent ab0fc445a7
commit 09f18d911f
9 changed files with 53 additions and 18 deletions
+19 -1
View File
@@ -4,11 +4,29 @@
"version": "2.0.0",
"tasks": [
{
"label": "(remote) connect",
"label": "(remote) sshfs connect",
"type": "shell",
"command": "${workspaceFolder}/../sshfs.sh",
"auto": true,
"problemMatcher": []
},
{
"label": "(remote) gdb connect",
"type": "shell",
"command": "ssh",
"args": [
"-fNL", "4242:localhost:4242", "m03"
]
},
{
"label": "(remote) build",
"type": "shell",
"command": "echo 'cant do that'",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$gcc"
}
]
}