fix(python-plugin): change name of alias for python main.py

This commit is contained in:
Hanashiko 2025-05-05 10:58:30 +03:00
commit 7eb5dffaa4
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ plugins=(... python)
| `pyuserpaths` | Add user site-packages folders to `PYTHONPATH`, for Python 2 and 3 | | `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) | | `pyserver` | Starts an HTTP server on the current directory (use `--directory` for a different one) |
| `act` | Activate the local environment | | `act` | Activate the local environment |
| `runpy` | Run `main.py` | | `pyr` | Run `main.py` |
## Virtual environments ## Virtual environments

View file

@ -124,4 +124,4 @@ fi
# Activate the local environment # Activate the local environment
alias act='source venv/bin/activate' alias act='source venv/bin/activate'
# run main.py # run main.py
alias runpy='python main.py' alias pyr='python main.py'