Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Tasks HereNew to Visual Studio Code? Get it now.

Tasks Here

alexzshl

|
4 installs
| (0) | Free
loads vscode tasks to status bar
This extension is now unpublished from Marketplace. You can choose to uninstall it.

Task Here

loads vscode-tasks to status bar

This project evolved from the following project: vscode-tasks

Extension Settings

Ctrl+Shift+P search taskshere and active or deactive extension

Preview

[preview

Settings

For ease of configuration, this extension takes the form of directly configuring tasks.json

By default, this extension will show all vscode-tasks on the status bar.If you want to hide a task, add the following configuration:

        {
            "type":"shell",
            "label":"test",
            "command": "echo",
            "args": [
                "arg1"
            ],
            "options": {
                "tasksHereDisplay": "hide"
            }
        }

By default, this extension uses the label of the task as the display name on the status bar. But if these names are too long to fit for display, you can customize the name with the following configuration:

        {
            "type":"shell",
            "label":"the label is long to show",
            "command": "echo",
            "args": [
                "arg1"
            ],
            "options": {
                "tasksHereName": "test"
            }
        }

If you prefer, you can even customize a name with an icon to help you better distinguish between tasks. This feature is provided by the VSCode API

        {
            "type":"shell",
            "label":"this label is to long to display",
            "command": "echo",
            "args": [
                "arg1"
            ],
            "options": {
                "tasksHereName": "$(squirrel) test"
            }
        }

You can find a list of built-in icons provided by VSCode on this page: icons-in-labels

name with icon

  • Contact us
  • Jobs
  • Privacy
  • Terms of use
  • Trademarks
© 2019 Microsoft