fix position translation at EOF with softwrap (#5786)
This commit is contained in:
parent
6ed2348078
commit
2949bb018c
1 changed files with 13 additions and 10 deletions
|
@ -207,7 +207,9 @@ pub fn render_text<'t>(
|
|||
it
|
||||
} else {
|
||||
let mut last_pos = formatter.visual_pos();
|
||||
if last_pos.row >= row_off {
|
||||
last_pos.col -= 1;
|
||||
last_pos.row -= row_off;
|
||||
// check if any positions translated on the fly (like cursor) are at the EOF
|
||||
translate_positions(
|
||||
char_pos + 1,
|
||||
|
@ -217,6 +219,7 @@ pub fn render_text<'t>(
|
|||
renderer,
|
||||
last_pos,
|
||||
);
|
||||
}
|
||||
break;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue