vscode-tasks Questions
1
Solved
First of all, I have just migrated to VS Code for Sublime Text couple of days back.
what I want is to Multiple Language highlighters in one Language extension.
eg: I want to highlight the proper ...
Boyett asked 25/1, 2018 at 7:20
1
Solved
I created two tasks to assist me in the development of a web site:
{
"version": "2.0.0",
"tasks": [
{
"taskName": "build site",
"command": "jekyll b --watch --incremental",
"type": "shell",
...
Beside asked 3/8, 2017 at 13:49
13
I have seen that it is possible to define a task in the VSCode. But I am not sure how to define multiple tasks in the tasks.json file.
Tupiguarani asked 5/5, 2015 at 7:12
1
Solved
I have a task defined in vscode's tasks.json file as following
{
"version": "0.1.0",
"tasks": [
{
"command": "gulp",
"taskName": "eslint_task",
"args": [
"eslint",
"--file",
"${file}"
],...
Parch asked 12/4, 2017 at 9:8
1
Solved
I have project that uses custom problemMatcher. But I would like to extract it into an extension making it configurable. So eventually it could be used in tasks.json like
{
"problemMatcher": "$my...
Dafodil asked 17/1, 2017 at 19:29
© 2022 - 2024 — McMap. All rights reserved.