diff options
author | Carlos Cardoso <cadu@oscardoso.com.br> | 2013-11-12 22:55:28 -0200 |
---|---|---|
committer | Carlos Cardoso <cadu@oscardoso.com.br> | 2013-11-12 22:55:28 -0200 |
commit | c6dce05fabd31c018cd77197329a6d5212e56787 (patch) | |
tree | 2b608f541473b82e8112b8b23b9b7ccfccd1b2d3 /plugins/python | |
parent | e30a1243dc89814e9f31e4b4cc284d948ecbfbd8 (diff) | |
download | zsh-c6dce05fabd31c018cd77197329a6d5212e56787.tar.gz zsh-c6dce05fabd31c018cd77197329a6d5212e56787.tar.bz2 zsh-c6dce05fabd31c018cd77197329a6d5212e56787.zip |
python3 clean updated.
Diffstat (limited to 'plugins/python')
-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 |