diff options
author | Andrew Chin <[email protected]> | 2020-05-01 23:59:19 +0100 |
---|---|---|
committer | Andrew Chin <[email protected]> | 2020-05-02 02:04:41 +0100 |
commit | 65234e8828defc0a56cb1d5e20793b5163b5330d (patch) | |
tree | 07047d818f29038f8208ad05429ce8002b320a9b /editors/code | |
parent | 3232fd5179f2e36dee69955ba8aae0463b142e67 (diff) |
Remove `workspaceLoaded` setting
The `workspaceLoaded` notification setting was originally designed to
control the display of a popup message that said:
"workspace loaded, {} rust packages"
This popup was removed and replaced by a much sleeker message in the
VSCode status bar that provides a real-time status while loading:
rust-analyzer: {}/{} packages
This was done as part of #3587
The new status-bar indicator is unobtrusive and shouldn't need to be
disabled. So this setting is removed.
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/package.json | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index d30673791..7ef727b9d 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -205,11 +205,6 @@ | |||
205 | "default": [], | 205 | "default": [], |
206 | "description": "Paths to exclude from analysis." | 206 | "description": "Paths to exclude from analysis." |
207 | }, | 207 | }, |
208 | "rust-analyzer.notifications.workspaceLoaded": { | ||
209 | "type": "boolean", | ||
210 | "default": true, | ||
211 | "markdownDescription": "Whether to show `workspace loaded` message." | ||
212 | }, | ||
213 | "rust-analyzer.notifications.cargoTomlNotFound": { | 208 | "rust-analyzer.notifications.cargoTomlNotFound": { |
214 | "type": "boolean", | 209 | "type": "boolean", |
215 | "default": true, | 210 | "default": true, |