summaryrefslogtreecommitdiff
path: root/helix-core/src/syntax.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-03-18 04:39:34 +0000
committerBlaž Hrastnik2021-03-18 05:07:53 +0000
commitdbcc099f484ad186782370ed0cf61b3e8d27282b (patch)
tree2d9157e9e8e1a23e86aaaa717ed677a7c6151624 /helix-core/src/syntax.rs
parent0f6624491bb35ccfa360e5fd48b3954d635c50ba (diff)
Move things out of state.rs.
Diffstat (limited to 'helix-core/src/syntax.rs')
-rw-r--r--helix-core/src/syntax.rs2
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;