Document experimental completions

This commit is contained in:
Kirill Bulatov 2020-11-25 00:42:58 +02:00
parent 4c95c6e25d
commit 9812150047

View file

@ -67,6 +67,13 @@ pub use crate::{
// fn test_name() {}
// }
// ```
//
// And experimental completions, enabled with the `rust-analyzer.completion.enableExperimental` setting.
// This flag enables or disables:
//
// - Auto import: additional completion options with automatic `use` import and options from all project importable items, matched for the input
//
// Experimental completions might cause issues with performance and completion list look.
/// Main entry point for completion. We run completion as a two-phase process.
///