nu_experimental/options/dc_glob.rs
1use crate::*;
2
3/// Enable `dc-glob` as the glob expansion backend used by command-level glob expansion.
4///
5/// This keeps the current behavior as default and allows opt-in evaluation of the new backend.
6pub static DC_GLOB: ExperimentalOption = ExperimentalOption::new(&DcGlob);
7
8struct DcGlob;
9
10impl ExperimentalOptionMarker for DcGlob {
11 const IDENTIFIER: &'static str = "dc-glob";
12 const DESCRIPTION: &'static str = "Use dc-glob as the experimental glob expansion backend.";
13 const STATUS: Status = Status::OptIn;
14 const SINCE: Version = (0, 112, 3);
15 const ISSUE: u32 = 18101;
16}