Skip to content

Instantly share code, notes, and snippets.

@voxpelli
Last active September 7, 2025 21:27
Show Gist options
  • Select an option

  • Save voxpelli/f6c43afa302460cd3ac48f75212032ba to your computer and use it in GitHub Desktop.

Select an option

Save voxpelli/f6c43afa302460cd3ac48f75212032ba to your computer and use it in GitHub Desktop.
a .vscode/tasks.json for running mgitstatus on the workspace
{
"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
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment