diff options
author | Gabriel Dinner-David | 2024-02-27 13:36:25 +0000 |
---|---|---|
committer | GitHub | 2024-02-27 13:36:25 +0000 |
commit | 26b3dc29be886c5a2ed1a5caaaf09eb730829c3e (patch) | |
tree | 7235f7dc402daaa9b3f5260d9a3f8aa166592ec6 /helix-core/tests/indent.rs | |
parent | f46a09ab4f945273c7baf32e58438b501914fabb (diff) |
toggling of block comments (#4718)
Diffstat (limited to 'helix-core/tests/indent.rs')
-rw-r--r-- | helix-core/tests/indent.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/helix-core/tests/indent.rs b/helix-core/tests/indent.rs index 53265e0b..31946c56 100644 --- a/helix-core/tests/indent.rs +++ b/helix-core/tests/indent.rs @@ -4,6 +4,7 @@ use helix_core::{ syntax::{Configuration, Loader}, Syntax, }; +use helix_stdx::rope::RopeSliceExt; use ropey::Rope; use std::{ops::Range, path::PathBuf, process::Command, sync::Arc}; @@ -211,7 +212,7 @@ fn test_treesitter_indent( if ignored_lines.iter().any(|range| range.contains(&(i + 1))) { continue; } - if let Some(pos) = helix_core::find_first_non_whitespace_char(line) { + if let Some(pos) = line.first_non_whitespace_char() { let tab_width: usize = 4; let suggested_indent = treesitter_indent_for_pos( indent_query, |