mirror of
https://github.com/ilyakooo0/helix.git
synced 2024-12-01 11:23:10 +03:00
Use full screen size
This commit is contained in:
parent
980e602352
commit
0882712b45
@ -239,8 +239,8 @@ impl Component for Completion {
|
|||||||
.and_then(|scope| scope.strip_prefix("source."))
|
.and_then(|scope| scope.strip_prefix("source."))
|
||||||
.unwrap_or("");
|
.unwrap_or("");
|
||||||
let cursor_pos = doc.selection(view.id).cursor();
|
let cursor_pos = doc.selection(view.id).cursor();
|
||||||
let cursor_pos =
|
let cursor_pos = (helix_core::coords_at_pos(doc.text().slice(..), cursor_pos).row
|
||||||
helix_core::coords_at_pos(doc.text().slice(..), cursor_pos).row - view.first_line;
|
- view.first_line) as u16;
|
||||||
|
|
||||||
let doc = match &option.documentation {
|
let doc = match &option.documentation {
|
||||||
Some(lsp::Documentation::String(contents))
|
Some(lsp::Documentation::String(contents))
|
||||||
@ -292,7 +292,9 @@ impl Component for Completion {
|
|||||||
|
|
||||||
let half = area.height / 2;
|
let half = area.height / 2;
|
||||||
let height = 15.min(half);
|
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
|
0
|
||||||
} else {
|
} else {
|
||||||
// -2 to subtract command line + statusline. a bit of a hack, because of splits.
|
// -2 to subtract command line + statusline. a bit of a hack, because of splits.
|
||||||
|
@ -434,6 +434,10 @@ impl Tree {
|
|||||||
self.focus = key;
|
self.focus = key;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn area(&self) -> Rect {
|
||||||
|
self.area
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
Loading…
Reference in New Issue
Block a user