Skip to content

Commit

Permalink
Fix split sizes getting out of sync with the terminal size, refs #69
Browse files Browse the repository at this point in the history
  • Loading branch information
archseer committed Jun 3, 2021
1 parent 3c77299 commit c0332bd
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 12 deletions.
10 changes: 8 additions & 2 deletions helix-term/src/compositor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,17 @@ impl Compositor {
}

pub fn render(&mut self, cx: &mut Context) {
self.terminal.autoresize().unwrap();
let area = self.size();
let area = self
.terminal
.autoresize()
.expect("Unable to determine terminal size");

// TODO: need to recalculate view tree if necessary

let surface = self.terminal.current_buffer_mut();

let area = surface.area().clone();

for layer in &self.layers {
layer.render(area, surface, cx)
}
Expand Down
8 changes: 6 additions & 2 deletions helix-term/src/ui/editor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ impl EditorView {
for selection in doc
.selection(view.id)
.iter()
.filter(|range| range.overlaps(&screen))
.filter(|range| screen.overlaps(&range))
{
// TODO: render also if only one of the ranges is in viewport
let mut start = view.screen_coords_at_pos(doc, text, selection.anchor);
Expand All @@ -261,7 +261,7 @@ impl EditorView {
Rect::new(
viewport.x + start.col as u16,
viewport.y + start.row as u16,
(end.col - start.col) as u16 + 1,
((end.col - start.col) as u16 + 1).min(viewport.width),
1,
),
selection_style,
Expand Down Expand Up @@ -633,6 +633,10 @@ impl Component for EditorView {
// clear with background color
surface.set_style(area, cx.editor.theme.get("ui.background"));

// if the terminal size suddenly changed, we need to trigger a resize
cx.editor
.resize(Rect::new(area.x, area.y, area.width, area.height - 1)); // - 1 to account for commandline

for (view, is_focused) in cx.editor.tree.views() {
let doc = cx.editor.document(view.doc).unwrap();
self.render_view(doc, view, area, surface, &cx.editor.theme, is_focused);
Expand Down
8 changes: 7 additions & 1 deletion helix-term/src/ui/prompt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,13 @@ impl Prompt {
if let Some(doc) = (self.doc_fn)(&self.line) {
let text = ui::Text::new(doc.to_string());

let area = Rect::new(completion_area.x, completion_area.y - 3, BASE_WIDTH * 3, 3);
let viewport = area;
let area = viewport.intersection(Rect::new(
completion_area.x,
completion_area.y - 3,
BASE_WIDTH * 3,
3,
));

let background = theme.get("ui.help");
surface.clear_with(area, background);
Expand Down
4 changes: 2 additions & 2 deletions helix-tui/src/terminal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,12 @@ where
}

/// Queries the backend for size and resizes if it doesn't match the previous size.
pub fn autoresize(&mut self) -> io::Result<()> {
pub fn autoresize(&mut self) -> io::Result<Rect> {
let size = self.size()?;
if size != self.viewport.area {
self.resize(size)?;
};
Ok(())
Ok(size)
}

/// Synchronizes terminal size, calls the rendering closure, flushes the current internal state
Expand Down
5 changes: 3 additions & 2 deletions helix-view/src/editor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,9 @@ impl Editor {
}

pub fn resize(&mut self, area: Rect) {
self.tree.resize(area);
self._refresh();
if self.tree.resize(area) {
self._refresh();
};
}

pub fn focus_next(&mut self) {
Expand Down
10 changes: 7 additions & 3 deletions helix-view/src/tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,13 @@ impl Tree {
}
}

pub fn resize(&mut self, area: Rect) {
self.area = area;
self.recalculate();
pub fn resize(&mut self, area: Rect) -> bool {
if self.area != area {
self.area = area;
self.recalculate();
return true;
}
false
}

pub fn recalculate(&mut self) {
Expand Down

0 comments on commit c0332bd

Please sign in to comment.