diff options
author | Robby Russell <robby@planetargon.com> | 2011-10-10 05:07:35 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-10-10 05:07:35 -0700 |
commit | 6e8c0c178dc15462fba1ea27e288bf61f8189c09 (patch) | |
tree | 6a9e8de8aa4823a15407cf984fa44ef97fafca24 /plugins/python | |
parent | 14bb3105d3f1bcfe4392959c780e845d387db838 (diff) | |
parent | b2d5b4365019a466fb8481598de87159704ded7a (diff) | |
download | zsh-6e8c0c178dc15462fba1ea27e288bf61f8189c09.tar.gz zsh-6e8c0c178dc15462fba1ea27e288bf61f8189c09.tar.bz2 zsh-6e8c0c178dc15462fba1ea27e288bf61f8189c09.zip |
Merge pull request #274 from diofeher/master
A python plugin
Diffstat (limited to 'plugins/python')
-rw-r--r-- | plugins/python/python.plugin.zsh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/python/python.plugin.zsh b/plugins/python/python.plugin.zsh new file mode 100644 index 000000000..3ea34d718 --- /dev/null +++ b/plugins/python/python.plugin.zsh @@ -0,0 +1,5 @@ +# Find python file +alias pyfind='find . -name "*.py"' + +# Remove python compiled byte-code +alias pyclean='find . -type f -name "*.py[co]" -exec rm -f \{\} \;' |