diff src/testdir/test_tabpage.vim @ 32062:8c9f63a518f5 v9.0.1362

patch 9.0.1362: ml_get error when going to another tab Commit: https://github.com/vim/vim/commit/99ad3a8bb95c6f860545a050472b6181e33bac1a Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 27 17:18:01 2023 +0000 patch 9.0.1362: ml_get error when going to another tab Problem: ml_get error when going to another tab. (Daniel J. Perry) Solution: Do not call update_topline() if "curwin" is invalid. (closes #11907)
author Bram Moolenaar <Bram@vim.org>
date Mon, 27 Feb 2023 18:30:04 +0100
parents c8ebe35b2475
children e47739c49487
line wrap: on
line diff
--- a/src/testdir/test_tabpage.vim
+++ b/src/testdir/test_tabpage.vim
@@ -872,4 +872,19 @@ func Test_tabpage_alloc_failure()
   call assert_equal(1, tabpagenr('$'))
 endfunc
 
+" this was giving ml_get errors
+func Test_tabpage_last_line()
+  enew
+  call setline(1, repeat(['a'], &lines + 5))
+  $
+  tabnew
+  call setline(1, repeat(['b'], &lines + 20))
+  $
+  tabNext
+  call assert_equal('a', getline('.'))
+
+  bwipe!
+  bwipe!
+endfunc
+
 " vim: shiftwidth=2 sts=2 expandtab