comparison src/testdir/test_arglist.vim @ 17478:f9a443306174 v8.1.1737

patch 8.1.1737: :args command that outputs one line gives more prompt commit https://github.com/vim/vim/commit/949f1989cba8bf7653316c2b1444c26f1536bfab Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 23 23:00:08 2019 +0200 patch 8.1.1737: :args command that outputs one line gives more prompt Problem: :args command that outputs one line gives more prompt. Solution: Only output line break if needed. (Daniel Hahler, closes https://github.com/vim/vim/issues/4715)
author Bram Moolenaar <Bram@vim.org>
date Tue, 23 Jul 2019 23:15:05 +0200
parents 424f2596f582
children 2b35e273392b
comparison
equal deleted inserted replaced
17477:9b550114e729 17478:f9a443306174
138 au! 138 au!
139 augroup END 139 augroup END
140 140
141 call assert_equal(['d', 'c', 'b', 'a', 'c'], g:buffers) 141 call assert_equal(['d', 'c', 'b', 'a', 'c'], g:buffers)
142 142
143 redir => result 143 call assert_equal("\na b [c] d ", execute(':args'))
144 args
145 redir END
146 call assert_equal('a b [c] d', trim(result))
147 144
148 .argd 145 .argd
149 call assert_equal(['a', 'b', 'd'], argv()) 146 call assert_equal(['a', 'b', 'd'], argv())
150 147
151 -argd 148 -argd