1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-04 03:48:07 +02:00

more tasks

This commit is contained in:
Jesse Duffield 2022-11-13 12:05:05 +11:00
parent fbac05fff7
commit e059641f3f

19
.vscode/tasks.json vendored
View File

@ -6,12 +6,20 @@
{
"label": "Generate cheatsheet",
"type": "process",
"command": "go run scripts/cheatsheet/main.go "
"command": "go run scripts/cheatsheet/main.go ",
"problemMatcher": [],
},
{
"label": "Bump gocui",
"type": "shell",
"command": "./scripts/bump_gocui.sh"
"command": "./scripts/bump_gocui.sh",
"problemMatcher": [],
},
{
"label": "Bump lazycore",
"type": "shell",
"command": "./scripts/bump_lazycore.sh",
"problemMatcher": [],
},
{
"label": "Run current file integration test",
@ -42,11 +50,4 @@
}
}
],
"inputs": [
{
"id": "testname",
"description": "Test name/path (e.g. 'commit/commit'):",
"type": "promptString"
},
]
}