Skip to content

Commit

Permalink
vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
adelaett committed Jan 24, 2024
1 parent 91a7b45 commit 8a9b1c6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
_build
.direnv
.envrc
.lia.cache
.lia.cache
_opam
14 changes: 8 additions & 6 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,23 @@
"tasks": [
{
"label": "dune-build",
"command": "dune", // Replace this with your external command
"command": "dune",
"args": [
"build"
], // Arguments for the external command
],
"type": "shell",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"dependsOn": "dune-build",
"label": "coq-reload",
"command": "${command:extension.coq.reset}",
"group": {
"kind": "build",
"isDefault": true
},
"group": "build",
"problemMatcher": []
}
]
}

0 comments on commit 8a9b1c6

Please sign in to comment.