Skip to content

Commit

Permalink
fix tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
at-grandpa committed Aug 9, 2019
1 parent a07bd37 commit 19c5224
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"reveal": "always",
"panel": "new"
},
"command": "crystal spec ${relativeFile}"
"command": "crystal spec ${relativeFile} --error-trace"
},
{
"label": "crystal spec current line",
Expand All @@ -40,7 +40,20 @@
"reveal": "always",
"panel": "new"
},
"command": "crystal spec ${relativeFile}:${lineNumber}"
"command": "crystal spec ${relativeFile}:${lineNumber} --error-trace"
},
{
"label": "crystal tool expand",
"type": "shell",
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
},
"command": "crystal tool expand -c ${relativeFile}:${lineNumber}:1 ${relativeFile}"
}
]
}
}

0 comments on commit 19c5224

Please sign in to comment.