HeadlinesBriefing favicon HeadlinesBriefing.com

Retro TUI IDE brings Rust to a blue‑screen console

Hacker News •
×

A developer on GitHub has released TRUST, a terminal‑based IDE that mimics the blue‑screen IDE DOS environments of the late‑80s. Targeted at Rust programmers, the experimental tool lets users edit files, browse project trees and invoke Cargo without leaving the console. All interactions run inside a single TUI window, preserving the nostalgic look while staying functional. It runs on any platform with a UTF‑8 terminal.

Key bindings replicate classic editor shortcuts: F5 or Ctrl+R triggers a cargo run, F7 runs cargo check, F8 launches tests, and F9 builds the binary. File operations use familiar keys—F2 or Ctrl+S saves, F3 opens, and Alt+X deletes a line. The pane layout separates project navigation, source editing, and a bottom console that captures compiler output quickly.

While not affiliated with any legacy DOS IDE vendor, TRUST serves as a proof‑of‑concept that Rust tooling can coexist with retro interfaces. Developers seeking a lightweight environment may appreciate its ability to run Cargo commands directly from the editor. Because it writes files to disk and marks unsaved buffers, it remains usable for small experiments, for hobbyists, though production work should stay in conventional IDEs.