mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-25 04:23:25 +00:00
internal: Decrease PartialOrd and PartialEq trait methods completion relevance
This commit is contained in:
parent
fc331fe831
commit
2c36102722
2 changed files with 3 additions and 2 deletions
|
@ -940,6 +940,7 @@ const OP_TRAIT_LANG_NAMES: &[&str] = &[
|
|||
"deref",
|
||||
"div_assign",
|
||||
"div",
|
||||
"eq",
|
||||
"fn_mut",
|
||||
"fn_once",
|
||||
"fn",
|
||||
|
@ -949,6 +950,7 @@ const OP_TRAIT_LANG_NAMES: &[&str] = &[
|
|||
"mul",
|
||||
"neg",
|
||||
"not",
|
||||
"partial_ord",
|
||||
"rem_assign",
|
||||
"rem",
|
||||
"shl_assign",
|
||||
|
@ -956,7 +958,6 @@ const OP_TRAIT_LANG_NAMES: &[&str] = &[
|
|||
"shr_assign",
|
||||
"shr",
|
||||
"sub",
|
||||
"sub",
|
||||
];
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
|
|
|
@ -139,7 +139,7 @@ pub struct CompletionRelevance {
|
|||
/// }
|
||||
/// ```
|
||||
pub is_local: bool,
|
||||
/// Set for method completions of the `core::ops` family.
|
||||
/// Set for method completions of the `core::ops` and `core::cmp` family.
|
||||
pub is_op_method: bool,
|
||||
/// This is set in cases like these:
|
||||
///
|
||||
|
|
Loading…
Reference in a new issue