diff options
author | Max Persson <max@maxpersson.com> | 2011-12-07 14:09:43 +0100 |
---|---|---|
committer | Max Persson <max@maxpersson.com> | 2011-12-07 14:09:43 +0100 |
commit | 5eae9421883d71b954d4abaa6056b28874ad47ec (patch) | |
tree | 239e9a447294d7f86f4fa2a1a85ace25e1c44bc0 /plugins/pip/_pip | |
parent | 1c4997f5cada6f1ff1f205b20cf321cfc6b6d347 (diff) | |
download | zsh-5eae9421883d71b954d4abaa6056b28874ad47ec.tar.gz zsh-5eae9421883d71b954d4abaa6056b28874ad47ec.tar.bz2 zsh-5eae9421883d71b954d4abaa6056b28874ad47ec.zip |
Added message when caching packages
Diffstat (limited to 'plugins/pip/_pip')
-rw-r--r-- | plugins/pip/_pip | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/pip/_pip b/plugins/pip/_pip index 07d37c80e..df53ba5ce 100644 --- a/plugins/pip/_pip +++ b/plugins/pip/_pip @@ -6,6 +6,7 @@ _pip_all() { # we cache the list of packages (originally from the macports plugin) if (( ! $+piplist )); then + echo -n " (caching package index...)" piplist=($(pip search * | cut -d ' ' -f 1 | tr '[A-Z]' '[a-z]')) fi } |