Mercurial > vim
annotate src/testdir/test43.in @ 2684:951641b8784d v7.3.102
updated for version 7.3.102
Problem: When using ":make", typing the next command and then getting the
"reload" prompt the next command is (partly) eaten by the reload
prompt.
Solution: Accept ':' as a special character at the reload prompt to accept
the default choice and execute the command.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Mon, 17 Jan 2011 20:08:11 +0100 |
parents | 3fc0f57ecb91 |
children | 80c529a5650f |
rev | line source |
---|---|
7 | 1 Tests for regexp with various magic settings. |
2 | |
3 STARTTEST | |
4 :set nocompatible viminfo+=nviminfo | |
5 /^1 | |
6 /a*b\{2}c\+/e | |
7 x/\Md\*e\{2}f\+/e | |
8 x:set nomagic | |
9 /g\*h\{2}i\+/e | |
10 x/\mj*k\{2}l\+/e | |
11 x/\vm*n{2}o+/e | |
12 x/\V^aa$ | |
13 x:set magic | |
14 /\v(a)(b)\2\1\1/e | |
15 x/\V[ab]\(\[xy]\)\1 | |
16 x:?^1?,$w! test.out | |
17 :qa! | |
18 ENDTEST | |
19 | |
20 1 a aa abb abbccc | |
21 2 d dd dee deefff | |
22 3 g gg ghh ghhiii | |
23 4 j jj jkk jkklll | |
24 5 m mm mnn mnnooo | |
25 6 x ^aa$ x | |
26 7 (a)(b) abbaa | |
27 8 axx [ab]xx |