| Crates.io | shrs_cd_stack |
| lib.rs | shrs_cd_stack |
| version | 0.0.6 |
| created_at | 2023-11-13 00:19:12.140178+00 |
| updated_at | 2024-06-01 04:54:07.885784+00 |
| description | maintain stack of past working directories |
| homepage | https://mrpicklepinosaur.github.io/shrs/ |
| repository | https://github.com/MrPicklePinosaur/shrs |
| max_upload_size | |
| id | 1033132 |
| size | 59,475 |
This is a plugin for shrs.
First add this plugin to your dependencies
shrs_cd_stack = { version = "0.0.6" }
Then include this plugin when initializing shrs
use shrs::prelude::*;
use shrs_cd_stack::CdStackPlugin;
let myshell = ShellBuilder::default()
.with_plugin(CdStackPlugin)
.build()
.unwrap();