diff options
author | Robby Russell <robby@planetargon.com> | 2013-11-12 19:33:37 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-11-12 19:33:37 -0800 |
commit | 0f380eab33d03c418ec82255fe0aaf4c3a3429a9 (patch) | |
tree | 2b608f541473b82e8112b8b23b9b7ccfccd1b2d3 /plugins/python/python.plugin.zsh | |
parent | e30a1243dc89814e9f31e4b4cc284d948ecbfbd8 (diff) | |
parent | c6dce05fabd31c018cd77197329a6d5212e56787 (diff) | |
download | zsh-0f380eab33d03c418ec82255fe0aaf4c3a3429a9.tar.gz zsh-0f380eab33d03c418ec82255fe0aaf4c3a3429a9.tar.bz2 zsh-0f380eab33d03c418ec82255fe0aaf4c3a3429a9.zip |
Merge pull request #2245 from cadusk/p3
python3 clean updated.
Diffstat (limited to 'plugins/python/python.plugin.zsh')
-rw-r--r-- | plugins/python/python.plugin.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/python/python.plugin.zsh b/plugins/python/python.plugin.zsh index 852c8b919..a8f9760ad 100644 --- a/plugins/python/python.plugin.zsh +++ b/plugins/python/python.plugin.zsh @@ -6,6 +6,7 @@ alias pyfind='find . -name "*.py"' function pyclean() { ZSH_PYCLEAN_PLACES=${*:-'.'} find ${ZSH_PYCLEAN_PLACES} -type f -name "*.py[co]" -delete + find ${ZSH_PYCLEAN_PLACES} -type d -name "__pycache__" -delete } # Grep among .py files |