Mercurial > vim
view src/testdir/test_argument_count.in @ 6911:e09a7ff88046 v7.4.775
patch 7.4.775
Problem: It is not possible to avoid using the first item of completion.
Solution: Add the "noinsert" and "noselect" values to 'completeopt'. (Shougo
Matsu)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Fri, 10 Jul 2015 18:18:40 +0200 |
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