Skip to content

Instantly share code, notes, and snippets.

@take-cheeze
Created May 21, 2024 01:03
Show Gist options
  • Save take-cheeze/a299ccae4c708950b0a5d295d1b9bd96 to your computer and use it in GitHub Desktop.
Save take-cheeze/a299ccae4c708950b0a5d295d1b9bd96 to your computer and use it in GitHub Desktop.
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "git grep",
"type": "shell",
"command": "git --no-pager grep ${input:gitGrepExpr}",
"presentation": {
"panel": "dedicated",
"clear": true
},
"problemMatcher": []
}
],
"inputs": [
{
"id": "gitGrepExpr",
"description": "git grep expression",
"type": "promptString"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment