diff options
| author | bors <bors@rust-lang.org> | 2024-11-26 10:12:09 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-11-26 10:12:09 +0000 |
| commit | 90b35a6239c3d8bdabc530a6a0816f7ff89a0aaf (patch) | |
| tree | 21b21d8a88ed129d3f4fcf7d5a7e82facd8f14b5 /src/tools/rust-analyzer/crates/ide | |
| parent | 8bfa98634a70dfaeae176a8b7fe98e778f715dd3 (diff) | |
| parent | f7c53a2df0aea1187879a37653480b31afb11417 (diff) | |
| download | rust-1.83.0.tar.gz rust-1.83.0.zip | |
Auto merge of #133476 - SomeoneToIgnore:stable, r=BoxyUwU,davidbarsky 1.83.0
[stable(not yet) backport] Revert r-a completions breakage This PR revers recent completion-related changes in r-a, which caused nvim and helix to malfunction. Changes reverted: 1. https://github.com/rust-lang/rust-analyzer/pull/18167 2. https://github.com/rust-lang/rust-analyzer/pull/18247 3. https://github.com/rust-lang/rust-analyzer/pull/18503 See https://github.com/rust-lang/rust-analyzer/pull/18503#issuecomment-2498920382 for more context cc `@BoxyUwU`
Diffstat (limited to 'src/tools/rust-analyzer/crates/ide')
| -rw-r--r-- | src/tools/rust-analyzer/crates/ide/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/rust-analyzer/crates/ide/src/lib.rs b/src/tools/rust-analyzer/crates/ide/src/lib.rs index c46c4c8ce94..547286c3f4d 100644 --- a/src/tools/rust-analyzer/crates/ide/src/lib.rs +++ b/src/tools/rust-analyzer/crates/ide/src/lib.rs @@ -119,8 +119,8 @@ pub use ide_assists::{ Assist, AssistConfig, AssistId, AssistKind, AssistResolveStrategy, SingleResolve, }; pub use ide_completion::{ - CallableSnippets, CompletionConfig, CompletionFieldsToResolve, CompletionItem, - CompletionItemKind, CompletionRelevance, Snippet, SnippetScope, + CallableSnippets, CompletionConfig, CompletionItem, CompletionItemKind, CompletionRelevance, + Snippet, SnippetScope, }; pub use ide_db::{ base_db::{Cancelled, CrateGraph, CrateId, FileChange, SourceRoot, SourceRootId}, |
