diff --git a/plugins/python/README.md b/plugins/python/README.md index 3ed640c77..833af166a 100644 --- a/plugins/python/README.md +++ b/plugins/python/README.md @@ -19,7 +19,7 @@ plugins=(... python) | `pyuserpaths` | Add user site-packages folders to `PYTHONPATH`, for Python 2 and 3 | | `pyserver` | Starts an HTTP server on the current directory (use `--directory` for a different one) | | `act` | Activate the local environment | -| `runpy` | Run `main.py` | +| `pyr` | Run `main.py` | ## Virtual environments diff --git a/plugins/python/python.plugin.zsh b/plugins/python/python.plugin.zsh index 504a61f32..3698f3d6a 100644 --- a/plugins/python/python.plugin.zsh +++ b/plugins/python/python.plugin.zsh @@ -124,4 +124,4 @@ fi # Activate the local environment alias act='source venv/bin/activate' # run main.py -alias runpy='python main.py' +alias pyr='python main.py'