🧠 A side-by-side CLI diff tool with word-level coloring, Dracula theme, and scrollable paging.
diffside is a command-line utility written in Rust that compares two text files and shows their differences in a clean, side-by-side format. It highlights word-level changes with background colors and includes paging support for viewing large files easily.
- 🟥🟩 Word-level diff highlighting
- 📜 Side-by-side comparison with aligned line numbers
- 🎨 Built-in Dracula theme (no config needed)
- 📏 Automatic line wrapping and alignment
- 🔽 Paging support using
less -R
- ✅ "No differences found" detection
Once published to crates.io:
cargo install diffside
Compare two files:
diffside file1.txt file2.txt
Disable pager (for piping or scripting):
diffside file1.txt file2.txt --no-pager
When the files are identical, you'll see:
✅ No differences found between 'file1.txt' and 'file2.txt'.
MIT © 2025 Kayne Amornvivat