2 releases
0.0.6 | Jun 1, 2024 |
---|---|
0.0.5 | Apr 16, 2024 |
#589 in Command-line interface
36KB
This is a plugin for shrs.
Using this plugin
First add this plugin to your dependencies
shrs_manpages = { version = "0.0.6" }
Register your own keybinding with the manpage handler
use shrs::prelude::*;
use shrs_manpages::{open_manpage};
let keybinding = keybindings! {
|state|
"C-n" => ("Open manpage", { open_manpage(state); }),
};
let myshell = ShellBuilder::default()
.with_keybinding(keybinding)
.build()
.unwrap();
myshell.run();
Dependencies
~17–34MB
~486K SLoC