shrs_manpages 0.0.6

keybinding to open man page currently typed command
Documentation

shrs_manpages

keybinding to open man page currently typed command

crates.io MIT/Apache 2.0

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();