Home
last modified time | relevance | path

Searched refs:candidates (Results 1 – 1 of 1) sorted by relevance

/NovaShell/src/shell/
H A Dmod.rs310 let (prefix, candidates) = if fragments.len() < 2 { in readline()
318 match candidates.len() { in readline()
321 let candidate = candidates.last().unwrap(); in readline()
330 for candidate in candidates { in readline()
396 let mut candidates: Vec<String> = Vec::new(); in complete_command() localVariable
399 candidates.push(String::from(cmd)); in complete_command()
402 ("", candidates) in complete_command()
406 let mut candidates: Vec<String> = Vec::new(); in complete_path() localVariable
426 candidates.push(file_name); in complete_path()
431 return (dir, candidates); in complete_path()