Expand description
Dual-Watcher Architecture - LSP + File System monitoring
Provides two-tier file change detection:
- LSP Watcher (Primary): Monitors Language Server Protocol events
- File System Watcher (Fallback): Monitors actual file system changes
The LSP watcher detects changes before they hit the disk, enabling faster response times and semantic understanding of code changes.
Structs§
- Dual
Watcher - Dual Watcher - combines LSP and File System watchers
- File
Change - File change event
- File
Watcher - File System Watcher - monitors actual file system changes
- LspEvent
- LSP event (simplified - full LSP protocol would be more complex)
- LspWatcher
- LSP Watcher - monitors Language Server Protocol events
Enums§
- Change
Kind - Type of file change
- Change
Source - Source of the change detection