mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 07:04:22 +00:00
Auto merge of #18006 - ChayimFriedman2:hide-deprecated, r=Veykril
Provide an option to hide deprecated items from completion Fixes #17989. I wonder if this should be instead done in the editor, that will do it in a language-agnostic way. Can't hurt to do it in rust-analyzer, I guess.
This commit is contained in:
commit
715e9ffcdb
4 changed files with 26 additions and 1 deletions
|
@ -429,6 +429,8 @@ config_data! {
|
|||
completion_callable_snippets: CallableCompletionDef = CallableCompletionDef::FillArguments,
|
||||
/// Whether to show full function/method signatures in completion docs.
|
||||
completion_fullFunctionSignatures_enable: bool = false,
|
||||
/// Whether to omit deprecated items from autocompletion. By default they are marked as deprecated but not hidden.
|
||||
completion_hideDeprecated: bool = false,
|
||||
/// Maximum number of completions to return. If `None`, the limit is infinite.
|
||||
completion_limit: Option<usize> = None,
|
||||
/// Whether to show postfix snippets like `dbg`, `if`, `not`, etc.
|
||||
|
@ -1443,6 +1445,10 @@ impl Config {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn completion_hide_deprecated(&self) -> bool {
|
||||
*self.completion_hideDeprecated(None)
|
||||
}
|
||||
|
||||
pub fn detached_files(&self) -> &Vec<AbsPathBuf> {
|
||||
// FIXME @alibektas : This is the only config that is confusing. If it's a proper configuration
|
||||
// why is it not among the others? If it's client only which I doubt it is current state should be alright
|
||||
|
|
|
@ -228,8 +228,12 @@ pub(crate) fn completion_items(
|
|||
line_index: &LineIndex,
|
||||
version: Option<i32>,
|
||||
tdpp: lsp_types::TextDocumentPositionParams,
|
||||
items: Vec<CompletionItem>,
|
||||
mut items: Vec<CompletionItem>,
|
||||
) -> Vec<lsp_types::CompletionItem> {
|
||||
if config.completion_hide_deprecated() {
|
||||
items.retain(|item| !item.deprecated);
|
||||
}
|
||||
|
||||
let max_relevance = items.iter().map(|it| it.relevance.score()).max().unwrap_or_default();
|
||||
let mut res = Vec::with_capacity(items.len());
|
||||
for item in items {
|
||||
|
|
|
@ -283,6 +283,11 @@ Whether to add parenthesis and argument snippets when completing function.
|
|||
--
|
||||
Whether to show full function/method signatures in completion docs.
|
||||
--
|
||||
[[rust-analyzer.completion.hideDeprecated]]rust-analyzer.completion.hideDeprecated (default: `false`)::
|
||||
+
|
||||
--
|
||||
Whether to omit deprecated items from autocompletion. By default they are marked as deprecated but not hidden.
|
||||
--
|
||||
[[rust-analyzer.completion.limit]]rust-analyzer.completion.limit (default: `null`)::
|
||||
+
|
||||
--
|
||||
|
|
|
@ -1077,6 +1077,16 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"title": "completion",
|
||||
"properties": {
|
||||
"rust-analyzer.completion.hideDeprecated": {
|
||||
"markdownDescription": "Whether to omit deprecated items from autocompletion. By default they are marked as deprecated but not hidden.",
|
||||
"default": false,
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"title": "completion",
|
||||
"properties": {
|
||||
|
|
Loading…
Reference in a new issue