watchdiff-tui 0.2.0

A high-performance file watcher with beautiful TUI showing real-time diffs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core functionality module
//!
//! Contains file watching, filtering, and event handling

pub mod events;
pub mod watcher;
pub mod filter;

// Re-export main types
pub use events::{FileEvent, FileEventKind, HighlightedFileEvent, AppState, AppEvent};
pub use watcher::FileWatcher;
pub use filter::FileFilter;