Mercurial > vim
view src/testdir/test75.in @ 2760:7fb8cdb9cb25 v7.3.156
updated for version 7.3.156
Problem: Tty names possibly left unterminated.
Solution: Use vim_strncpy() instead of strncpy().
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Mon, 11 Apr 2011 14:24:37 +0200 |
parents | 6c05b5e5c1be |
children | 6018c815e120 |
line wrap: on
line source
" Tests for functions. STARTTEST :so small.vim :" Test maparg() with a string result :map foo<C-V> is<F4>foo :vnoremap <script> <buffer> <expr> <silent> bar isbar :call append('$', maparg('foo<C-V>')) :call append('$', string(maparg('foo<C-V>', '', 0, 1))) :call append('$', string(maparg('bar', '', 0, 1))) :" :/^eof/+1,$w! test.out :qa! ENDTEST eof