comparison src/testdir/test_command_count.vim @ 14656:0d5726f2913b v8.1.0341

patch 8.1.0341: :argadd in empty buffer changes the buffer name commit https://github.com/vim/vim/commit/32bbd00949c585ea1c9da13197279a175097eddd Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 31 23:06:22 2018 +0200 patch 8.1.0341: :argadd in empty buffer changes the buffer name Problem: :argadd in empty buffer changes the buffer name. (Pavol Juhas) Solution: Don't re-use the current buffer when not going to edit the file. (closes #3397) Do re-use the current buffer for :next.
author Christian Brabandt <cb@256bit.org>
date Fri, 31 Aug 2018 23:15:04 +0200
parents 3be5e8306a3e
children 08940efa6b4e
comparison
equal deleted inserted replaced
14655:f2d77602d8e2 14656:0d5726f2913b
156 endfunc 156 endfunc
157 157
158 func Test_command_count_4() 158 func Test_command_count_4()
159 %argd 159 %argd
160 let bufnr = bufnr('$') 160 let bufnr = bufnr('$')
161 arga aa bb cc dd ee ff 161 next aa bb cc dd ee ff
162 call assert_equal(bufnr, bufnr('%'))
163
162 3argu 164 3argu
163 let args = [] 165 let args = []
164 .,$-argdo call add(args, expand('%')) 166 .,$-argdo call add(args, expand('%'))
165 call assert_equal(['cc', 'dd', 'ee'], args) 167 call assert_equal(['cc', 'dd', 'ee'], args)
166 168