A lightweight text editor built with Python's Tkinter library. This editor provides basic functionalities such as creating new files, opening existing files, saving files, and displaying file information. It is simple, intuitive, and ideal for small text editing tasks.
- New File: Start a new document.
- Open File: Open and edit existing text files.
- Save File: Save your current work.
- Save As: Save the file with a new name or location.
- About: Display information about the editor.
- Exit: Close the application.
- Keyboard Shortcuts: Supports
Ctrl+Sfor quick save. - Status Bar: Displays the current file name or status.
- Python 3.x
- Tkinter (comes pre-installed with Python)
- Clone the repository:
git clone https://github.com/SagarBiswas-MultiHAT/simple-text-editor.git
- Navigate to the project directory:
cd simple-text-editor
- Run the script:
python script.py
- Use the menu options to create, open, or save files.
- The status bar displays the current file status.
- Create a new file by selecting
File > New. - Open an existing file by selecting
File > Open. - Save your work using
File > SaveorCtrl+S.