1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-06-05 21:07:50 +02:00

Added task to open git UI

This commit is contained in:
kkapsner 2018-10-13 12:30:49 +02:00
parent 5aee6531c9
commit 2a7bb7ff0e

21
.vscode/tasks.json vendored
View File

@ -130,6 +130,27 @@
"panel": "shared" "panel": "shared"
}, },
"problemMatcher": [] "problemMatcher": []
},
{
"label": "open git UI",
"type": "shell",
"windows": {
"command": "git-cola"
},
"linux": {
"command": "git-cola"
},
"osx": {
"command": "git-cola"
},
"args": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
} }
] ]
} }