]> git.lizzy.rs Git - rust.git/commitdiff
Merge #4207 #4253
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>
Sat, 2 May 2020 12:44:55 +0000 (12:44 +0000)
committerGitHub <noreply@github.com>
Sat, 2 May 2020 12:44:55 +0000 (12:44 +0000)
4207: Add unwrap block assist #4156 r=matklad a=bnjjj

close issue #4156

4253: Remove `workspaceLoaded` setting r=matklad a=eminence

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 change in this PR simply renames this setting from `workspaceLoaded` to
`progress` to better describe what it actually controls.  At the moment,
the only type of progress message that is controlled by this setting is
the initial load messages, but in theory other messages could also be
controlled by this setting.

Reviewer notes:

* If we didn't like the idea of causing minor breaking to user's config, we could keep the setting name as `workspaceLoaded`
* I think we can now close both #2719 and #3176 since the notification dialog in question no longer exists (actually I think you can close those issues even if you reject this PR ðŸ˜„ )

Co-authored-by: Benjamin Coenen <5719034+bnjjj@users.noreply.github.com>
Co-authored-by: Andrew Chin <achin@eminence32.net>

Trivial merge