A (simple) text editor than runs in your terminal, built in Rust. This was made using the super awesome tutorial written by @pflenker on his website here.
(Click play to see basic usage)
- Open file
- Edit file
- Save file to disk
- Search for words in file (forwards and backwards)
- Warn when quitting editor without saving file.
- Syntax highlighting (WIP)
- Tab support
- User defined config file
- Open folder
- Directory tree
You need to have Rust installed on your system. You can do so from the official link.
To build it, run
$ cargo build
or run it directly using
$ cargo run <path/to/file>
where <path/to/file>
is the path to the file you want to edit. You can leave it blank if you want to create and edit a new file (filename will be
asked on save).