This is a simple text editor implemented in C. It supports basic text editing features, syntax highlighting, and file operations.
- Basic text editing (insert, delete, and navigate)
- Syntax highlighting for C, C++, JavaScript, and TypeScript files
- Save and open files
- Search functionality
- Status bar with file information and messages
To compile the text editor, use the following command:
cc main.c -o main -Wall -Wextra -pedantic -std=c99