A simple, Vim-inspired text editor with basic features, built from scratch using C. This text editor offers a minimalist interface for users who prefer keyboard-based text editing, similar to Vim, but with fewer features.
- Basic text editing: Write and edit text in a terminal-based interface.
- Keyboard navigation: Navigate through text using basic Vim-like keybindings.
- Search functionality: Find specific text within the file.
- Save and exit: Easily save your changes and exit the editor.
To compile and install the text editor, you need a C compiler (like 'gcc') and the 'make' tool.
- Clone the repo:
git clone https://github.com/kumail074/Patch-Text-Editor.git
cd Patch-Text-Editor
- Compile the project
make
- Run the editor
./pat
This project is a basic implementation of a Vim-like text editor and does not yet support more advanced features like syntax highlighting, multi-file editing, or plugins. The goal of this project is to provide a minimalist, keyboard-centric text editor with simple functionality, similar to Vim.
If you'd like to contribute to this project, feel free to fork the repository and submit pull requests. Any enhancements, bug fixes, or feature requests are welcome.