view src/testdir/test75.in @ 2885:eb6c70460702 v7.3.216

updated for version 7.3.216 Problem: When recovering a file a range of lines is missing. (Charles Jie) Solution: Reset the index when advancing to the next pointer block. Add a test to verify recovery works.
author Bram Moolenaar <bram@vim.org>
date Mon, 13 Jun 2011 01:07:27 +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