A little text editor in your terminal, inspired by GNU nano. Written in Rust.
- Syntax highlighting for various programming languages
- Mouse support for scrolling and cursor positioning
- Search functionality with match highlighting
- Line numbers with current line highlighting
- Tab support with auto-indentation
- macOS-friendly key bindings using Cmd instead of Ctrl
# Edit a new file
crabsy
# Open an existing file
crabsy filename.txt- Cmd+S: Save file
- Cmd+F: Search
- Cmd+G: Show help
- Cmd+Esc: Exit
- F3: Find next match
cargo build --releaseThe binary will be available at target/release/crabsy.
Crabsy is a learning project exploring terminal UI development in Rust using ratatui.