Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 932 Bytes

README.md

File metadata and controls

49 lines (39 loc) · 932 Bytes

Rem (Terminal Code Editor)

⚡ ᕙ(`▿´)ᕗ ⚡

Rem is a terminal code editor for personal use that does most things terminal editors do, but it's a very basic implementation

Features

  • 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

Usage

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

Example(s)

Open existing files:

./rem file.c

Create a new file (remember to save):

./rem