A notepad I wrote in tkinter. Opens files, saves them and has find.
python notepad.pyRequires Python 3.x. tkinter is included so nothing to install.
pip install pytest
pytest test_notepad.py -vIf you're on Linux and get a display error:
pip install pytest-xvfb
pytest test_notepad.py -v- No "do you want to save?" prompt when opening a new file
- Save errors only print to console, useless if you double-clicked to open
- Find always wraps around, there's no option to turn that off
- Ctrl+F is commented out because it was firing twice. Use Edit > Find for now