view src/testdir/test_argument_0count.in @ 7610:a49853dd0ccf

Added tag v7.4.1104 for changeset 77a14f3bc18bcaef000e1b5eb99b3d6d1ebb65a1
author Christian Brabandt <cb@256bit.org>
date Sat, 16 Jan 2016 16:30:05 +0100
parents a03e143b9358
children
line wrap: on
line source

Tests for :0argadd and :0argedit     vim: set ft=vim :

STARTTEST
:so small.vim
:let arglists = []
:%argd
:arga a b c d
:2argu
:0arga added
:call add(arglists, argv())
:2argu
:arga third
:call add(arglists, argv())
:%argd
:arga a b c d
:2argu
:0arge edited
:call add(arglists, argv())
:2argu
:arga third
:call add(arglists, argv())
:e! test.out
:call append(0, map(copy(arglists), 'join(v:val, " ")'))
:w
:qa!
ENDTEST