Fix problemMatcher for webview watch task

feature/ssh-config
Kelvin Schoofs 4 years ago
parent 09ef94d9bc
commit c0f77bf11e

@ -44,16 +44,16 @@
"applyTo": "closedDocuments",
"background": {
"activeOnStart": true,
"beginsPattern": "^Compiling...$",
"endsPattern": "Finished compiling"
"beginsPattern": "Compiling.*?|Compilation .*?starting",
"endsPattern": "Compiled .*?successfully|Failed .*?to.*?compile.*?"
},
"pattern":[
"pattern": [
{
"regexp": "^(.+)$",
"file": 1
},
{
"regexp": "^\\((\\d+),(\\d+)\\): (.+)$",
"regexp": "\\((\\d+),(\\d+)\\):\\s*(.+)",
"line": 1,
"column": 2,
"message": 3,

Loading…
Cancel
Save