1. Parse content in the background thread 2. Remove unnecessary clones 3. `TextViewStyle` and `LanguageRegistry` can now be used across threads
9 lines
155 B
Rust
9 lines
155 B
Rust
mod diagnostics;
|
|
mod highlighter;
|
|
mod languages;
|
|
mod registry;
|
|
|
|
pub use diagnostics::*;
|
|
pub use highlighter::*;
|
|
pub use languages::*;
|
|
pub use registry::*;
|