aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/prompt.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-02-09 06:40:30 +0000
committerBlaž Hrastnik2021-02-09 06:40:47 +0000
commitd4b85ce18d8a9bb535eaeae9e2c7421ef81c81e9 (patch)
treef68c8fc1d4996f861af2c7966ac8c49dba4aa174 /helix-term/src/ui/prompt.rs
parent755632f23113ccff66390de1e2c3476a51886b00 (diff)
popup: wip work on completion popups
Diffstat (limited to 'helix-term/src/ui/prompt.rs')
-rw-r--r--helix-term/src/ui/prompt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/prompt.rs b/helix-term/src/ui/prompt.rs
index 5a47bf12..7228b38c 100644
--- a/helix-term/src/ui/prompt.rs
+++ b/helix-term/src/ui/prompt.rs
@@ -235,7 +235,7 @@ impl Component for Prompt {
self.render_prompt(area, surface, &cx.editor.theme)
}
- fn cursor_position(&self, area: Rect, ctx: &mut Context) -> Option<Position> {
+ fn cursor_position(&self, area: Rect, editor: &Editor) -> Option<Position> {
Some(Position::new(
area.height as usize,
area.x as usize + self.prompt.len() + self.cursor,