A barebones text editor written as a take-home exercise for Juspay
Go to file
Harsh Shandilya ed2bfa1d3b
fix(editor): make return values consistent
2022-11-15 20:29:30 +05:30
src fix(editor): make return values consistent 2022-11-15 20:29:30 +05:30
.gitignore Initial commit 2022-08-07 16:24:32 +05:30
Cargo.lock feat: switch to crossterm 2022-11-15 19:54:51 +05:30
Cargo.toml feat: switch to crossterm 2022-11-15 19:54:51 +05:30
README.md chore: add README 2022-08-11 12:16:48 +05:30
rust-toolchain.toml chore: add `rust-toolchain` file 2022-08-08 00:56:39 +05:30

README.md

text-editor

Usage

  1. Install Rust. I recommend using rustup.
  2. Run cargo run -- <filename> to open filename with the editor.

Supported features

  1. Navigating using arrow keys
  2. Adding new lines
  3. Deleting and backspacing across line boundaries
  4. Saving to disk