blob: 82a8bdd36d4ab6a655058c4cff0f08e53f93e53a [file] [log] [blame]
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001Some tests for buffer-local autocommands
2
3STARTTEST
4:so small.vim
5:e xx
6:!rm -f test.out
Bram Moolenaar1c2fda22005-01-02 11:43:19 +00007:au BufLeave <buffer> :!echo buffer-local autommand in %>> test.out
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008: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!
14ENDTEST
15
16start of test file xx
17end of test file xx