mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
parent
b6e05d2dce
commit
8cda3d1405
2 changed files with 6 additions and 0 deletions
|
@ -20,6 +20,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
### Fixed
|
||||
|
||||
- Line indicator obstructing vi mode cursor when scrolled into history
|
||||
- Vi mode search starting in the line below the vi cursor
|
||||
|
||||
## 0.9.0
|
||||
|
||||
|
|
|
@ -420,6 +420,11 @@ impl<'a, N: Notify + 'a, T: EventListener> input::ActionContext<T> for ActionCon
|
|||
if self.terminal.mode().contains(TermMode::VI) {
|
||||
self.search_state.origin = self.terminal.vi_mode_cursor.point;
|
||||
self.search_state.display_offset_delta = 0;
|
||||
|
||||
// Adjust origin for content moving upward on search start.
|
||||
if self.terminal.grid().cursor.point.line + 1 == self.terminal.screen_lines() {
|
||||
self.search_state.origin.line -= 1;
|
||||
}
|
||||
} else {
|
||||
let viewport_top = Line(-(self.terminal.grid().display_offset() as i32)) - 1;
|
||||
let viewport_bottom = viewport_top + self.terminal.bottommost_line();
|
||||
|
|
Loading…
Reference in a new issue