| Crates.io | shrs_autocd |
| lib.rs | shrs_autocd |
| version | 0.0.6 |
| created_at | 2023-11-13 00:17:05.046457+00 |
| updated_at | 2024-06-01 04:53:42.823051+00 |
| description | implement autocd feature present in many shells |
| homepage | https://mrpicklepinosaur.github.io/shrs/ |
| repository | https://github.com/MrPicklePinosaur/shrs |
| max_upload_size | |
| id | 1033129 |
| size | 57,522 |
This is a plugin for shrs.
First add this plugin to your dependencies
shrs_autocd = { version = "0.0.6" }
Then include this plugin when initializing shrs
use shrs::prelude::*;
use shrs_autocd::AutocdPlugin;
let myshell = ShellBuilder::default()
.with_plugin(AutocdPlugin)
.build()
.unwrap();