This is a plugin for shrs.
First add this plugin to your dependencies
toml
shrs_mux = { version = "0.0.1" }
Then include this plugin when initializing shrs ```rust use shrs::prelude::*; use shrs_mux::MuxPlugin;
let myshell = ShellBuilder::default() .with_plugin(MuxPlugin::new()) .build() .unwrap();
```