aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernardo <[email protected]>2019-02-24 12:41:19 +0000
committerBernardo <[email protected]>2019-03-10 12:35:02 +0000
commit536a579f2e36fdfccb399ae3b0590bf1d0496063 (patch)
tree128011eb340c2ea2f910518d4f8aa26785d9611e
parenta9d09b7ec0721e9ad305866a57989d1aa9c67ec1 (diff)
simplify watch patterns
-rw-r--r--editors/code/package.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 47eaac878..2177d875d 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -215,11 +215,11 @@
215 "${workspaceRoot}" 215 "${workspaceRoot}"
216 ], 216 ],
217 "background": { 217 "background": {
218 "beginsPattern": "^\\[Running ", 218 "beginsPattern": "^\\[Running\\b",
219 "endsPattern": "^(\\[Finished running\\]|To learn more, run the command again with --verbose\\.)$" 219 "endsPattern": "^\\[Finished running\\b"
220 }, 220 },
221 "pattern": "$rustc" 221 "pattern": "$rustc"
222 } 222 }
223 ] 223 ]
224 } 224 }
225} 225} \ No newline at end of file