Mercurial > vim
view src/testdir/test_argument_count.in @ 7613:4456fa2d22e8 v7.4.1106
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 16 18:05:50 2016 +0100
patch 7.4.1106
Problem: The nsis script can't be used from the appveyor build.
Solution: Add "ifndef" to allow for variables to be set from the command
line. Remove duplicate SetCompressor command. Support using other
gettext binaries. (Ken Takata) Update build instructions to use
libintl-8.dll.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 16 Jan 2016 18:15:05 +0100 |
parents | 22f95a018b13 |
children |
line wrap: on
line source
Tests for :[count]argument! and :[count]argdelete vim: set ft=vim : STARTTEST :so small.vim :%argd :argadd a b c d :set hidden :let buffers = [] :augroup TEST :au BufEnter * call add(buffers, expand('%:t')) :augroup END :$argu :$-argu :-argu :1argu :+2argu :augroup TEST :au! :augroup END :let arglists = [] :.argd :call add(arglists, argv()) :-argd :call add(arglists, argv()) :$argd :call add(arglists, argv()) :1arga c :1arga b :$argu :$arga x :call add(arglists, argv()) :0arga Y :call add(arglists, argv()) :%argd :call add(arglists, argv()) :arga a b c d e f :2,$-argd :call add(arglists, argv()) :e! test.out :call append(0, buffers) :let lnr = line('$') :call append(lnr, map(copy(arglists), 'join(v:val, " ")')) :w :qa! ENDTEST