A vscode/tasks.json configuration that can be put into a folder / workspace that contains a bunch of git subfolders that one wants to easily check the status of using mgitstatus
Prerequisites:
A vscode/tasks.json configuration that can be put into a folder / workspace that contains a bunch of git subfolders that one wants to easily check the status of using mgitstatus
Prerequisites:
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "label": "Run mgitstatus", | |
| "type": "shell", | |
| "command": " mgitstatus -e -d 1 --flatten", | |
| "group": "none", | |
| "presentation": { | |
| "reveal": "silent" | |
| }, | |
| "problemMatcher": { | |
| "fileLocation": ["relative", "${workspaceFolder}"], | |
| "source": "mgitstatus", | |
| "pattern": { | |
| "regexp": "^(.*):\\s+(.*)$", | |
| "file": 1, | |
| "message": 2 | |
| } | |
| } | |
| } | |
| ] | |
| } |