Add which command, add external completions, and builtin var completions (#782)

* Add which and external completions

* WIP

* Finish up external and var completions

* fix windows
This commit is contained in:
JT
2022-01-20 13:02:53 -05:00
committed by GitHub
parent d4b6b4b09a
commit 33ffb2c39a
9 changed files with 490 additions and 101 deletions

View File

@ -2,8 +2,10 @@ mod benchmark;
mod ps;
mod run_external;
mod sys;
mod which_;
pub use benchmark::Benchmark;
pub use ps::Ps;
pub use run_external::{External, ExternalCommand};
pub use sys::Sys;
pub use which_::Which;