| Crates.io | RustyEd |
| lib.rs | RustyEd |
| version | 0.1.3 |
| created_at | 2025-10-02 20:27:37.849722+00 |
| updated_at | 2025-10-02 20:27:37.849722+00 |
| description | A simple text editor written in Rust using FLTK |
| homepage | |
| repository | https://github.com/MoAlyousef/red |
| max_upload_size | |
| id | 1865018 |
| size | 134,996 |
red or RustyEd is a lightweight and minimal text editor which supports multiple-tabs (à la vscode) and which integrates a file browser and a terminal. The editor component supports syntax highlighting via tree-sitter-highlight. lsp support via json-rpc (completions via ctrl+space).
git clone https://github.com/MoAlyousef/red
cd red
cargo build --release
To disable building with tree-sitter and the terminal:
cargo build --no-default-features --release
To build with native wayland support on Linux:
cargo build --features=fltk/use-wayland --release