mirror of
https://github.com/nushell/nushell.git
synced 2024-11-08 01:24:38 +01:00
nu-cli/completions: complete external args as filepath (#5385)
This commit is contained in:
parent
7c6f976d65
commit
3df03e2e6d
@ -175,7 +175,9 @@ impl NuCompleter {
|
||||
pos,
|
||||
);
|
||||
}
|
||||
FlatShape::Filepath | FlatShape::GlobPattern => {
|
||||
FlatShape::Filepath
|
||||
| FlatShape::GlobPattern
|
||||
| FlatShape::ExternalArg => {
|
||||
let mut completer = FileCompletion::new(self.engine_state.clone());
|
||||
|
||||
return self.process_completion(
|
||||
|
Loading…
Reference in New Issue
Block a user