diff options
author | Roc <rochappy.sun@gmail.com> | 2021-06-12 09:50:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-11 18:50:29 -0700 |
commit | 02ce2c4a2f563c4e092410fe3ddc8b29b6de7fdc (patch) | |
tree | 571eeb33edc9d0c726076cca9d91ccc20482cbd8 /plugins/python | |
parent | 706b2f3765d41bee2853b17724888d1a3f6f00d9 (diff) | |
download | zsh-02ce2c4a2f563c4e092410fe3ddc8b29b6de7fdc.tar.gz zsh-02ce2c4a2f563c4e092410fe3ddc8b29b6de7fdc.tar.bz2 zsh-02ce2c4a2f563c4e092410fe3ddc8b29b6de7fdc.zip |
add python alias (#7736)
Diffstat (limited to 'plugins/python')
-rw-r--r-- | plugins/python/python.plugin.zsh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/python/python.plugin.zsh b/plugins/python/python.plugin.zsh index c3c1474c1..276eb6f91 100644 --- a/plugins/python/python.plugin.zsh +++ b/plugins/python/python.plugin.zsh @@ -1,3 +1,6 @@ +# python command +alias py='python' + # Find python file alias pyfind='find . -name "*.py"' |