annotate src/testdir/test54.in @ 723:587ea89ab80c
updated for version 7.0220
author |
vimboss |
date |
Fri, 10 Mar 2006 21:37:46 +0000 |
parents |
8c25f10d49e7 |
children |
71eaeb69efe4 |
rev |
line source |
40
|
1 Some tests for buffer-local autocommands
|
|
2
|
|
3 STARTTEST
|
|
4 :so small.vim
|
|
5 :e xx
|
|
6 :!rm -f test.out
|
51
|
7 :au BufLeave <buffer> :!echo buffer-local autommand in %>> test.out
|
40
|
8 :e somefile " here, autocommand for xx shall write test.out
|
|
9 : " but autocommand shall not apply to buffer named <buffer>
|
|
10 :bwipe xx " here, autocommand shall be auto-deleted
|
|
11 :e xx " nothing shall be written
|
|
12 :e somefile " nothing shall be written
|
|
13 :qa!
|
|
14 ENDTEST
|
|
15
|
|
16 start of test file xx
|
|
17 end of test file xx
|