如何创建提供自定义problemMatcher的VS Code扩展?

时间:2017-01-17 19:29:02

标签: visual-studio-code vscode-extensions vscode-tasks

我的项目使用自定义problemMatcher。但我想将其提取到一个扩展中,使其可配置。所以最终它可以在tasks.json中使用

{
    "problemMatcher": "$myCustomProblemMatcher"
}

怎么做?

1 个答案:

答案 0 :(得分:2)

自VSCode 1.11.0(2017年3月)起,extensions can contribute problem matchers via package.json

{
    "contributes": {
        "problemMatchers": [
            {
                "name": "gcc",
                "owner": "cpp",
                "fileLocation": [
                    "relative",
                    "${workspaceRoot}"
                ],
                "pattern": {
                    "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
                    "file": 1,
                    "line": 2,
                    "column": 3,
                    "severity": 4,
                    "message": 5
                }
            }
        ]
    }
}

然后,任务可以使用"problemMatcher": ["$name"](在此示例中为$gcc)引用它。

不是定义匹配器的pattern内联,它也可以在problemPatterns中提供,因此它可以重用(例如,如果你想在多个匹配器中使用它):

{
    "contributes": {
        "problemPatterns": [
            {
                "name": "gcc",
                "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
                "file": 1,
                "line": 2,
                "column": 3,
                "severity": 4,
                "message": 5
            }
        ],
        "problemMatchers": [
            {
                "name": "gcc",
                "owner": "cpp",
                "fileLocation": [
                    "relative",
                    "${workspaceRoot}"
                ],
                "pattern": "$gcc"
            }
        ]
    }
}