view src/testdir/test_argument_0count.in @ 6522:a03e143b9358 v7.4.588

updated for version 7.4.588 Problem: ":0argedit foo" puts the new argument in the second place instead of the first. Solution: Adjust the range type. (Ingo Karkat)
author Bram Moolenaar <bram@vim.org>
date Tue, 20 Jan 2015 19:31:02 +0100
parents
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