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
Copy file name to clipboardExpand all lines: crates/completion/src/lib.rs
+3-6Lines changed: 3 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -73,12 +73,9 @@ pub use crate::{
73
73
// }
74
74
// ```
75
75
//
76
-
// And experimental completions, enabled with the `rust-analyzer.completion.disableFuzzyAutoimports` setting.
77
-
// This flag enables or disables:
78
-
//
79
-
// - Auto import: additional completion options with automatic `use` import and options from all project importable items, matched for the input
80
-
//
81
-
// Experimental completions might cause issues with performance and completion list look.
76
+
// And the auto import completions, enabled with the `rust-analyzer.completion.autoimport.enable` setting and the corresponding LSP client capabilities.
77
+
// Those are the additional completion options with automatic `use` import and options from all project importable items,
78
+
// fuzzy matched agains the completion imput.
82
79
83
80
/// Main entry point for completion. We run completion as a two-phase process.
0 commit comments