Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Commit c85bf69

Browse files
authored
Merge pull request #685 from Xanewok/wait-to-build
Use dynamic wait_to_build inferred by the RLS by default
2 parents fcb2d73 + 488ee90 commit c85bf69

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
### Unreleased
22

3+
* Use dynamic `wait_to_build` in RLS by default rather than setting it to 1500ms
4+
35
### 0.7.0 - 2019-10-15
46

57
* Implement support for multi-project workspace layout 🎉

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,11 @@
288288
"scope": "resource"
289289
},
290290
"rust.wait_to_build": {
291-
"type": "number",
292-
"default": 1500,
291+
"type": [
292+
"number",
293+
"null"
294+
],
295+
"default": null,
293296
"description": "Time in milliseconds between receiving a change notification and starting build.",
294297
"scope": "resource"
295298
},

0 commit comments

Comments
 (0)