Skip to content

Latest commit

 

History

History
76 lines (58 loc) · 2.14 KB

README.md

File metadata and controls

76 lines (58 loc) · 2.14 KB

PyPad - is a code editor for different programming languages. PyPad supports some languages like a Python, Json, Html and CSS. So far, PyPad is in development and it is not suitable for use, but you can watch the demo version of the project and test it.

// these are just test hotkeys, they will change in the future.

Ctrl+O - Open directory
Ctrl+P - Open file
Ctrl+, - Open settings
Ctrl+T - Open theme picker
Ctrl+W - Open project switcher
Ctrl+B - Hide/Show file tree
Ctrl+Tab - Switch current file

How to run

Windows

git clone https://github.com/chebupelka8/PyPad-v2
cd .\PyPad-v2

python -m venv .venv  # create virtual environment
.\.venv\Scripts\activate  # activate virtual environment
pip install -r requirements.txt  # install dependencies

python main.py  # run script

Linux

git clone https://github.com/chebupelka8/PyPad-v2
cd ./PyPad-v2

python -m venv .venv  # create virtual environment
source ./.venv/bin/activate  # activate virtual environment
pip install -r requirements.txt  # install dependencies

python main.py  # run script

Screenshots