summaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-11-13 12:05:05 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-11-13 12:05:07 +1100
commite059641f3f8a564a96b310b86a9689fed20becc9 (patch)
treef3307aac6dc234a8d37c5544cfb2a1a037d6c4fc /.vscode
parentfbac05fff74f7780c99e6c9f9d583c9786a447fc (diff)
more tasks
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/tasks.json19
1 files changed, 10 insertions, 9 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 6b6943b12..062eb0051 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -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"
- },
- ]
}