diff options
author | Blaž Hrastnik | 2021-06-02 13:45:43 +0000 |
---|---|---|
committer | GitHub | 2021-06-02 13:45:43 +0000 |
commit | 2719a35123e2b4000a0b2b863c929dd2824fff9a (patch) | |
tree | f47d33355c14887e82b7d86c232c9bcc43caf0df /helix-term | |
parent | 0a6672c6261062eb13ed8c30ab2800c340e5f6ac (diff) | |
parent | 78980f575be1cbb31f1bdab92d3ecd2be4d2adac (diff) |
Merge pull request #55 from helix-editor/autoresize
autoresize terminal in compositor render
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/compositor.rs | 2 |
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 { |