diff options
author | Erwan ROUSSEL <erwan.roussel51@gmail.com> | 2018-11-01 15:42:18 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2018-11-01 15:42:18 +0100 |
commit | 545446a3db0c7e7a2a7e44985b9d0459c347dc49 (patch) | |
tree | 3fd500344f0acb5a148e34e08228d9d8967a2869 /plugins/cpanm | |
parent | 5c91cfcb061aafbffe7b60f22c23a3ed580fdf2a (diff) | |
download | zsh-545446a3db0c7e7a2a7e44985b9d0459c347dc49.tar.gz zsh-545446a3db0c7e7a2a7e44985b9d0459c347dc49.tar.bz2 zsh-545446a3db0c7e7a2a7e44985b9d0459c347dc49.zip |
cpanm: add README (#7377)
Diffstat (limited to 'plugins/cpanm')
-rw-r--r-- | plugins/cpanm/README.md | 9 | ||||
-rw-r--r-- | plugins/cpanm/_cpanm | 3 |
2 files changed, 9 insertions, 3 deletions
diff --git a/plugins/cpanm/README.md b/plugins/cpanm/README.md new file mode 100644 index 000000000..3803e3e00 --- /dev/null +++ b/plugins/cpanm/README.md @@ -0,0 +1,9 @@ +# Cpanm + +This plugin provides completion for [Cpanm](https://github.com/miyagawa/cpanminus) ([docs](https://metacpan.org/pod/App::cpanminus)). + +To use it add cpanm to the plugins array in your zshrc file. + + ```bash +plugins=(... cpanm) +``` diff --git a/plugins/cpanm/_cpanm b/plugins/cpanm/_cpanm index 58451d35a..ff9ae1c15 100644 --- a/plugins/cpanm/_cpanm +++ b/plugins/cpanm/_cpanm @@ -6,9 +6,6 @@ # # Current supported cpanm version: 1.4000 (Tue Mar 8 01:00:49 PST 2011) # -# The latest code is always located at: -# https://github.com/rshhh/cpanminus/blob/master/etc/_cpanm -# local arguments curcontext="$curcontext" typeset -A opt_args |