diff options
author | Blaž Hrastnik | 2021-03-18 04:39:34 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-18 05:07:53 +0000 |
commit | dbcc099f484ad186782370ed0cf61b3e8d27282b (patch) | |
tree | 2d9157e9e8e1a23e86aaaa717ed677a7c6151624 /helix-core/src/syntax.rs | |
parent | 0f6624491bb35ccfa360e5fd48b3954d635c50ba (diff) |
Move things out of state.rs.
Diffstat (limited to 'helix-core/src/syntax.rs')
-rw-r--r-- | helix-core/src/syntax.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index 3d665953..e75dc724 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -355,7 +355,7 @@ pub struct LanguageLayer { pub(crate) tree: Option<Tree>, } -use crate::state::coords_at_pos; +use crate::coords_at_pos; use crate::transaction::{ChangeSet, Operation}; use crate::Tendril; |