diff options
author | Blaž Hrastnik | 2020-09-17 05:57:49 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-09-17 07:32:40 +0000 |
commit | 088f8a82af1b90e422c495cde92b537dedb1e419 (patch) | |
tree | c0607eb3f08e4cc782aa4f627046f439820425b5 /helix-core/src/lib.rs | |
parent | 31999d6528b247e223774d1a4edec7966dda3d9e (diff) |
Incremental parsing: rough draft.
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r-- | helix-core/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index 069dc116..8c58d734 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -1,6 +1,7 @@ #![allow(unused)] pub mod commands; pub mod graphemes; +mod position; mod selection; pub mod state; pub mod syntax; @@ -9,8 +10,10 @@ mod transaction; pub use ropey::{Rope, RopeSlice}; pub use tendril::StrTendril as Tendril; +pub use position::Position; pub use selection::Range as SelectionRange; pub use selection::Selection; +pub use syntax::Syntax; pub use state::State; |