Rem is a terminal code editor for personal use that does most things terminal editors do, but it's a very basic implementation
- Save the contents of any file
- Syntax highlighting for select languages
- Notifies you if a file is writeable or not
- Allows for querying (searching) file contents
How to create an executable (if building from source):
make
Available Commands:
Ctrl-X (^X) | Exits the Rem editor
Ctrl-Q (^Q) | Search (Query) for specific characters or strings
Ctrl-S (^S) | Save file contents
You can check the help menu in multiple ways. Pick your favorite!
./rem help
./rem -h
./rem --help
You can also check what version of Rem you're running:
./rem -v
./rem --version
Open existing files:
./rem file.c
Create a new file (remember to save):
./rem