mirror of
https://github.com/ilyakooo0/helix.git
synced 2024-11-28 21:20:23 +03:00
Take prompt length into account.
This commit is contained in:
parent
ed6a4c4bd2
commit
ca809617b2
@ -137,9 +137,10 @@ impl Prompt {
|
||||
}
|
||||
}
|
||||
}
|
||||
let line = area.height - 1;
|
||||
// render buffer text
|
||||
surface.set_string(1, area.height - 1, &self.prompt, text_color);
|
||||
surface.set_string(2, area.height - 1, &self.line, text_color);
|
||||
surface.set_string(0, line, &self.prompt, text_color);
|
||||
surface.set_string(self.prompt.len() as u16, line, &self.line, text_color);
|
||||
}
|
||||
}
|
||||
|
||||
@ -206,8 +207,8 @@ impl Component for Prompt {
|
||||
|
||||
fn cursor_position(&self, area: Rect, ctx: &mut Context) -> Option<Position> {
|
||||
Some(Position::new(
|
||||
area.height as usize - 1,
|
||||
area.x as usize + 2 + self.cursor,
|
||||
area.height as usize,
|
||||
area.x as usize + self.prompt.len() + self.cursor,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user