From 530759d5a07a73b627aa30d2322b4a2701855bf3 Mon Sep 17 00:00:00 2001 From: Jeffrey Chandler <36927673+jeff-chandler@users.noreply.github.com> Date: Fri, 12 Oct 2018 15:43:55 -0400 Subject: [PATCH] Added a README file for the man plugin --- plugins/man/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 plugins/man/README.md diff --git a/plugins/man/README.md b/plugins/man/README.md new file mode 100644 index 000000000..0fd3fead2 --- /dev/null +++ b/plugins/man/README.md @@ -0,0 +1,13 @@ +# Man plugin + +This plugin adds a shortcut to insert man before the previous command. + +To use it, add `man` to the plugins array in your zshrc file: + +```zsh +plugins=(... man) +``` +# Keyboard Shortcuts +| Shortcut | Description | +|-----------------------------------|------------------------------------------------------------------------| +| esc + man | add man before the previous command to see the manual for this command |