diff options
author | Blaž Hrastnik | 2021-04-07 09:05:59 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-04-07 09:05:59 +0000 |
commit | f0d49d3ca4535a8c22a4ca4038e889560723ec74 (patch) | |
tree | e7ce3b4eb4ab38308dfabecf44aae0f592baab01 /helix-term/src | |
parent | 12961d657f9ca78f54156457ed27732e60992734 (diff) |
hack: make queries load relative to source dir for now.
We want to provide a runtime dir later on.
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/ui/editor.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 67f5cf84..726d0d95 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -233,7 +233,7 @@ impl EditorView { // TODO: render also if only one of the ranges is in viewport let mut start = view.screen_coords_at_pos(doc, text, selection.anchor); let mut end = view.screen_coords_at_pos(doc, text, selection.head); - + let head = end; if selection.head < selection.anchor { @@ -282,7 +282,7 @@ impl EditorView { selection_style, ); } - + // cursor if let Some(head) = head { surface.set_style( |