aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/editor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-view/src/editor.rs')
-rw-r--r--helix-view/src/editor.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs
index 2942507d..6b5b285d 100644
--- a/helix-view/src/editor.rs
+++ b/helix-view/src/editor.rs
@@ -15,10 +15,13 @@ pub struct Editor {
}
impl Editor {
- pub fn new(area: tui::layout::Rect) -> Self {
+ pub fn new(mut area: tui::layout::Rect) -> Self {
let theme = Theme::default();
let language_servers = helix_lsp::Registry::new();
+ // HAXX: offset the render area height by 1 to account for prompt/commandline
+ area.height -= 1;
+
Self {
tree: Tree::new(area),
should_close: false,