fix(move): check the correct buffer (#25698)

This commit is contained in:
zeertzjq
2023-10-18 10:34:55 +08:00
committed by GitHub
parent bbc74d51ad
commit 366d0c7887
2 changed files with 31 additions and 1 deletions

View File

@@ -247,7 +247,7 @@ void update_topline(win_T *wp)
int old_topfill = wp->w_topfill;
// If the buffer is empty, always set topline to 1.
if (buf_is_empty(curbuf)) { // special case - file is empty
if (buf_is_empty(wp->w_buffer)) { // special case - file is empty
if (wp->w_topline != 1) {
redraw_later(wp, UPD_NOT_VALID);
}