diff options
author | Jan Hrastnik | 2021-06-11 21:57:16 +0000 |
---|---|---|
committer | Jan Hrastnik | 2021-06-16 15:00:30 +0000 |
commit | 17f69a03e0bd6c7bee7e26237dc47dfa0e0dd7c9 (patch) | |
tree | 82cedc3a536a40dd6cdd5eb41a555565fee4f090 /helix-core | |
parent | 3756c21baefa6182beaa9a3d5ced9d720cf9adcb (diff) |
ran cargo clippy and cargo fmt
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index c0c8937a..91d2bee0 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -100,11 +100,11 @@ pub use unicode_general_category::get_general_category; #[doc(inline)] pub use {regex, tree_sitter}; +pub use graphemes::RopeGraphemes; pub use position::{coords_at_pos, pos_at_coords, Position}; pub use selection::{Range, Selection}; pub use smallvec::SmallVec; pub use syntax::Syntax; -pub use graphemes::RopeGraphemes; pub use diagnostic::Diagnostic; pub use state::State; |