Changelog #30
Commit: 3370c81
Release: 2020-06-22
New Features
-
#4839
implement goto type definition for inlay hints -
#4851
add quickfix to add a struct field -
#4860
accept relative paths in rust-project.json. If a relative path is found as part of Crate.root_module or Root.path, interpret it as relative to the location of the rust-project.json file. -
#4878
make Replace Qualified Name With Use replace all mentions of the path. -
#4919
Structural Search Replace no longer requires to specify the type of the capture. -
#4916
add configuration options to treat certaincargo check
warnings with hint or information severity.1 2 3 4 5
{ "rust-analyzer.diagnostics.warningsAsHint": [ "unused_variables" ] }
-
#4925
highlighting escape sequences in strings. -
#4903
adddocumentation
to the list of semantic tokens modifiers for code inside doc comments. -
#4963
download artifacts into tmp dir. This should prevent partially downloaded files in cases when the user closes vsode before the download is complete. -
#4969
handle bindings after @ in patterns.
Fixes
-
#4877
fix syntax highlighting of recursive macros. -
#4876
don’t highlight unresolved references in doc comments. -
#4915
only highlight rust code in doc comments. -
#4959
syntax highlighting for documentation comments on macro definitions. -
#4821
display doctest code lens before comment. -
#4958
fix type inference for Fn traits.