You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test.rs:10:13: 10:35 warning: unused import, #[warn(unused_imports)] on by default
test.rs:10 let _ = quote_expr!(cx, $idx);
^~~~~~~~~~~~~~~~~~~~~~
note: in expansion of quote_expr!
test.rs:10:13: 10:35 note: expansion site
test.rs:10:13: 10:35 warning: unused import, #[warn(unused_imports)] on by default
test.rs:10 let _ = quote_expr!(cx, $idx);
^~~~~~~~~~~~~~~~~~~~~~
note: in expansion of quote_expr!
test.rs:10:13: 10:35 note: expansion site
The text was updated successfully, but these errors were encountered:
As part of removing `pub use` glob, two extra import globs were
injected to make `quote_expr!` work. However the globs caused
`unused_import` warning in some places.
Quasiquoter needed the globs since it generated idents (e.g. `TyU`)
rather than absolute paths (`::syntax::ast::TyU`).
This patch removes the extra globs and makes quasiquoter use absolute
paths.
Fixes#14618
cc @sfackler
…meter-hints-toggle, r=Veykril
fix: `editor.parameterHints.enabled` not always being respected
rust-lang#13472
When accepting a suggestion, the parameter hints would always trigger automatically. This PR provides the ability for users to toggle this functionality off by specifying the new "rust-analyzer.autoTriggerParameterHints" option in `settings.json`. Possible options are `true` and `false`. It's `true` by default.
The text was updated successfully, but these errors were encountered: