* WIP getting scopes right

* finish adding initial support

* Finish with alias and add startup commands
This commit is contained in:
Jonathan Turner
2020-04-15 17:43:23 +12:00
committed by GitHub
parent e3da037b80
commit bd5836e25d
20 changed files with 332 additions and 38 deletions

View File

@ -4,6 +4,7 @@ pub(crate) mod macros;
mod from_delimited_data;
mod to_delimited_data;
pub(crate) mod alias;
pub(crate) mod append;
pub(crate) mod args;
pub(crate) mod autoview;
@ -75,6 +76,7 @@ pub(crate) mod reject;
pub(crate) mod rename;
pub(crate) mod reverse;
pub(crate) mod rm;
pub(crate) mod run_alias;
pub(crate) mod save;
pub(crate) mod shells;
pub(crate) mod shuffle;
@ -115,6 +117,7 @@ pub(crate) use command::{
WholeStreamCommand,
};
pub(crate) use alias::Alias;
pub(crate) use append::Append;
pub(crate) use calc::Calc;
pub(crate) use compact::Compact;