aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-06-02 13:45:43 +0000
committerGitHub2021-06-02 13:45:43 +0000
commit2719a35123e2b4000a0b2b863c929dd2824fff9a (patch)
treef47d33355c14887e82b7d86c232c9bcc43caf0df /helix-term/src
parent0a6672c6261062eb13ed8c30ab2800c340e5f6ac (diff)
parent78980f575be1cbb31f1bdab92d3ecd2be4d2adac (diff)
Merge pull request #55 from helix-editor/autoresize
autoresize terminal in compositor render
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/compositor.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/compositor.rs b/helix-term/src/compositor.rs
index 3a17904d..7753e0a5 100644
--- a/helix-term/src/compositor.rs
+++ b/helix-term/src/compositor.rs
@@ -122,7 +122,9 @@ impl Compositor {
}
pub fn render(&mut self, cx: &mut Context) {
+ self.terminal.autoresize().unwrap();
let area = self.size();
+
let surface = self.terminal.current_buffer_mut();
for layer in &self.layers {