comparison src/testdir/test_buffer.vim @ 22840:7c1e2e3f2d8d v8.2.1967

patch 8.2.1967: the session file does not restore the alternate file Commit: https://github.com/vim/vim/commit/59d8e56e048eb5d384649284fb35363931fc3697 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 7 18:41:10 2020 +0100 patch 8.2.1967: the session file does not restore the alternate file Problem: The session file does not restore the alternate file. Solution: Add ":balt". Works like ":badd" and also sets the buffer as the alternate file. Use it in the session file. (closes #7269, closes #6714)
author Bram Moolenaar <Bram@vim.org>
date Sat, 07 Nov 2020 18:45:04 +0100
parents 92f221ad267c
children d7644bffe128
comparison
equal deleted inserted replaced
22839:5a6b1d00c97e 22840:7c1e2e3f2d8d
372 close 372 close
373 close 373 close
374 bwipe! SomeNewBuffer 374 bwipe! SomeNewBuffer
375 endfunc 375 endfunc
376 376
377 func Test_balt()
378 new SomeNewBuffer
379 balt +3 OtherBuffer
380 e #
381 call assert_equal('OtherBuffer', bufname())
382 endfunc
383
377 " vim: shiftwidth=2 sts=2 expandtab 384 " vim: shiftwidth=2 sts=2 expandtab