Use full screen size

This commit is contained in:
wojciechkepka 2021-06-20 07:15:08 +02:00 committed by Blaž Hrastnik
parent 980e602352
commit 0882712b45
2 changed files with 9 additions and 3 deletions

View file

@ -239,8 +239,8 @@ fn render(&self, area: Rect, surface: &mut Surface, cx: &mut Context) {
.and_then(|scope| scope.strip_prefix("source."))
.unwrap_or("");
let cursor_pos = doc.selection(view.id).cursor();
let cursor_pos =
helix_core::coords_at_pos(doc.text().slice(..), cursor_pos).row - view.first_line;
let cursor_pos = (helix_core::coords_at_pos(doc.text().slice(..), cursor_pos).row
- view.first_line) as u16;
let doc = match &option.documentation {
Some(lsp::Documentation::String(contents))
@ -292,7 +292,9 @@ fn render(&self, area: Rect, surface: &mut Surface, cx: &mut Context) {
let half = area.height / 2;
let height = 15.min(half);
let y = if cursor_pos > half as usize {
let y = if cursor_pos + view.area.y
>= (cx.editor.tree.area().height - height - 1/* statusline */)
{
0
} else {
// -2 to subtract command line + statusline. a bit of a hack, because of splits.

View file

@ -434,6 +434,10 @@ pub fn focus_next(&mut self) {
self.focus = key;
}
}
pub fn area(&self) -> Rect {
self.area
}
}
#[derive(Debug)]