Skip to content

Commit e06b8aa

Browse files
committed
Auto merge of #17434 - Lunaphied:fix/document-inlay-parameters, r=Veykril
docs: document omission heuristics for parameter inlay hints These are not currently documented and could cause users to think that their rust-analyzer configuration is broken. Partially addresses #17433.
2 parents 45b1e13 + 5385429 commit e06b8aa

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

src/tools/rust-analyzer/crates/ide/src/inlay_hints.rs

+17
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,23 @@ fn ty_to_text_edit(
455455
// * elided lifetimes
456456
// * compiler inserted reborrows
457457
//
458+
// Note: inlay hints for function argument names are heuristically omitted to reduce noise and will not appear if
459+
// any of the
460+
// link:https://github.com/rust-lang/rust-analyzer/blob/6b8b8ff4c56118ddee6c531cde06add1aad4a6af/crates/ide/src/inlay_hints/param_name.rs#L92-L99[following criteria]
461+
// are met:
462+
//
463+
// * the parameter name is a suffix of the function's name
464+
// * the argument is a qualified constructing or call expression where the qualifier is an ADT
465+
// * exact argument<->parameter match(ignoring leading underscore) or parameter is a prefix/suffix
466+
// of argument with _ splitting it off
467+
// * the parameter name starts with `ra_fixture`
468+
// * the parameter name is a
469+
// link:https://github.com/rust-lang/rust-analyzer/blob/6b8b8ff4c56118ddee6c531cde06add1aad4a6af/crates/ide/src/inlay_hints/param_name.rs#L200[well known name]
470+
// in a unary function
471+
// * the parameter name is a
472+
// link:https://github.com/rust-lang/rust-analyzer/blob/6b8b8ff4c56118ddee6c531cde06add1aad4a6af/crates/ide/src/inlay_hints/param_name.rs#L201[single character]
473+
// in a unary function
474+
//
458475
// image::https://user-images.githubusercontent.com/48062697/113020660-b5f98b80-917a-11eb-8d70-3be3fd558cdd.png[]
459476
pub(crate) fn inlay_hints(
460477
db: &RootDatabase,

0 commit comments

Comments
 (0)