Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-core/src/textobject.rs')
| -rw-r--r-- | helix-core/src/textobject.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/textobject.rs b/helix-core/src/textobject.rs index 7576b3a7..9015e957 100644 --- a/helix-core/src/textobject.rs +++ b/helix-core/src/textobject.rs @@ -7,7 +7,7 @@ use crate::chars::{categorize_char, char_is_whitespace, CharCategory}; use crate::graphemes::{next_grapheme_boundary, prev_grapheme_boundary}; use crate::line_ending::rope_is_line_ending; use crate::movement::Direction; -use crate::syntax::LanguageConfiguration; +use crate::syntax::config::LanguageConfiguration; use crate::Range; use crate::{surround, Syntax}; |