Rim is a simple text editor written in Rust, inspired by Vim.
i
: Enter Insert mode:
: Enter Command mode- Arrow keys: Move cursor
q
: Quit (in Normal mode only)
- Type to insert text
- Arrow keys: Move cursor
Backspace
: Delete character before cursorEnter
: Insert new lineEsc
: Return to Normal mode
:w
: Save file:q
: Quit:wq
: Save and quitEsc
: Cancel command and return to Normal mode
To open a file with Rim:
cargo run -- <file_path>
If the file doesn't exist, it will be created when you save.