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 1/2] 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 | From 4a5fa087b89c5f26d93c610147db478b78efae4d Mon Sep 17 00:00:00 2001 From: Jeffrey Chandler <36927673+jeff-chandler@users.noreply.github.com> Date: Fri, 12 Oct 2018 15:54:31 -0400 Subject: [PATCH 2/2] Updated keybinding syntax --- plugins/man/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/man/README.md b/plugins/man/README.md index 0fd3fead2..4601252c0 100644 --- a/plugins/man/README.md +++ b/plugins/man/README.md @@ -10,4 +10,4 @@ plugins=(... man) # Keyboard Shortcuts | Shortcut | Description | |-----------------------------------|------------------------------------------------------------------------| -| esc + man | add man before the previous command to see the manual for this command | +| Esc + man | add man before the previous command to see the manual for this command |