mirror of https://github.com/helix-editor/helix
Slicing micro-optimization
parent
df0d58e9f7
commit
add3be8528
|
@ -270,6 +270,10 @@ impl EditorView {
|
||||||
|
|
||||||
let text_style = theme.get("ui.text");
|
let text_style = theme.get("ui.text");
|
||||||
|
|
||||||
|
// It's slightly more efficient to produce a full RopeSlice from the Rope, then slice that a bunch
|
||||||
|
// of times than it is to always call Rope::slice/get_slice (it will internally always hit RSEnum::Light).
|
||||||
|
let text = text.slice(..);
|
||||||
|
|
||||||
'outer: for event in highlights {
|
'outer: for event in highlights {
|
||||||
match event {
|
match event {
|
||||||
HighlightEvent::HighlightStart(span) => {
|
HighlightEvent::HighlightStart(span) => {
|
||||||
|
|
Loading…
Reference in New Issue