Merge pull request #17150 from zeertzjq/vim-8.2.4166

vim-patch:8.2.4166: undo synced when switching buffer in another window
This commit is contained in:
bfredl
2022-01-27 08:48:31 +01:00
committed by GitHub
2 changed files with 27 additions and 1 deletions

View File

@@ -1454,7 +1454,10 @@ void set_curbuf(buf_T *buf, int action)
}
if (bufref_valid(&prevbufref) && !aborting()) {
win_T *previouswin = curwin;
if (prevbuf == curbuf) {
// Do not sync when in Insert mode and the buffer is open in
// another window, might be a timer doing something in another
// window.
if (prevbuf == curbuf && ((State & INSERT) == 0 || curbuf->b_nwindows <= 1)) {
u_sync(false);
}
close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL,