d-language-server / vscode-dlang

D language support for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=LaurentTreguier.vscode-dls
MIT License
22 stars 7 forks source link

Filter for workspace tasks that have the type "dub" #5

Closed Amaranthos closed 5 years ago

Amaranthos commented 5 years ago

Currently the DubTaskProvider doesn't consider the type of tasks returned by vsc.workspace.getConfiguration('tasks')

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "hello",
            "type": "shell",
            "command": "echo 'Hello'"
        },
        {
            "label": "test",
            "type": "dub",
            "task": "test"
        }
    ]
}

This results in an error being thrown snipaste_2018-12-02_21-22-22