mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 04:17:43 +03:00
Optimize rendering by using Ropey::byte_slice
This avoids costly conversions via byte_to_char (which are then reversed back into bytes internally in Ropey). Reduces time spent in slice/byte_to_char from ~24% to ~5%.
This commit is contained in:
parent
c6bd105484
commit
59f05088b9
5 changed files with 16 additions and 17 deletions
|
@ -576,9 +576,7 @@ pub struct Syntax {
|
|||
}
|
||||
|
||||
fn byte_range_to_str(range: std::ops::Range<usize>, source: RopeSlice) -> Cow<str> {
|
||||
let start_char = source.byte_to_char(range.start);
|
||||
let end_char = source.byte_to_char(range.end);
|
||||
Cow::from(source.slice(start_char..end_char))
|
||||
Cow::from(source.byte_slice(range))
|
||||
}
|
||||
|
||||
impl Syntax {
|
||||
|
@ -1197,9 +1195,7 @@ impl<'a> TextProvider<'a> for RopeProvider<'a> {
|
|||
type I = ChunksBytes<'a>;
|
||||
|
||||
fn text(&mut self, node: Node) -> Self::I {
|
||||
let start_char = self.0.byte_to_char(node.start_byte());
|
||||
let end_char = self.0.byte_to_char(node.end_byte());
|
||||
let fragment = self.0.slice(start_char..end_char);
|
||||
let fragment = self.0.byte_slice(node.start_byte()..node.end_byte());
|
||||
ChunksBytes {
|
||||
chunks: fragment.chunks(),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue