Skip to main content

nu_cli/completions/
file_completions.rs

1use crate::completions::{Completer, Context, Fetched, completion_common::complete_paths};
2
3pub struct FileCompletion;
4
5impl Completer for FileCompletion {
6    fn fetch(&mut self, ctx: &Context) -> Fetched {
7        complete_paths(ctx, false)
8    }
9}