diff options
author | Corey Woodcox <corey.woodcox@gmail.com> | 2012-05-28 18:30:14 -0600 |
---|---|---|
committer | Corey Woodcox <corey.woodcox@gmail.com> | 2012-05-28 18:30:14 -0600 |
commit | a1a1f456b3f9204ec794e3b81d55a899de8fd92f (patch) | |
tree | fb9069564d36ebaee287011d15e7f634d1b7305a /plugins/python/python.plugin.zsh | |
parent | 0b70b6d0483210b7fcc74ee1073c7de887f4f3ac (diff) | |
parent | 3fdaf26006e3f075e7ccefd2721295b8bc5172f9 (diff) | |
download | zsh-a1a1f456b3f9204ec794e3b81d55a899de8fd92f.tar.gz zsh-a1a1f456b3f9204ec794e3b81d55a899de8fd92f.tar.bz2 zsh-a1a1f456b3f9204ec794e3b81d55a899de8fd92f.zip |
Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins/python/python.plugin.zsh')
-rw-r--r-- | plugins/python/python.plugin.zsh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/python/python.plugin.zsh b/plugins/python/python.plugin.zsh index 3ea34d718..8be3cd863 100644 --- a/plugins/python/python.plugin.zsh +++ b/plugins/python/python.plugin.zsh @@ -2,4 +2,7 @@ alias pyfind='find . -name "*.py"' # Remove python compiled byte-code -alias pyclean='find . -type f -name "*.py[co]" -exec rm -f \{\} \;' +alias pyclean='find . -type f -name "*.py[co]" -delete' + +# Grep among .py files +alias pygrep='grep --include="*.py"' |