nu_experimental/options/
background_completions.rs1use crate::*;
2
3pub static BACKGROUND_COMPLETIONS: ExperimentalOption =
10 ExperimentalOption::new(&BackgroundCompletions);
11
12struct BackgroundCompletions;
15
16impl ExperimentalOptionMarker for BackgroundCompletions {
17 const IDENTIFIER: &'static str = "background-completions";
18 const DESCRIPTION: &'static str = "\
19 Runs completions on a background thread so typing never blocks. \
20 Disable to let custom completers drive interactive child processes.";
21 const STATUS: Status = Status::OptOut;
22 const SINCE: Version = (0, 115, 0);
23 const ISSUE: u32 = 18839;
24}