mirror of
https://github.com/vim/vim.git
synced 2025-10-05 05:34:07 -04:00
updated for version 7.0024
This commit is contained in:
@@ -23,7 +23,7 @@ SCRIPTS = test1.out test3.out test4.out test5.out test6.out \
|
||||
test33.out test34.out test35.out test36.out test37.out \
|
||||
test38.out test39.out test40.out test41.out test42.out \
|
||||
test43.out test44.out test45.out test46.out test47.out \
|
||||
test48.out test51.out test53.out
|
||||
test48.out test51.out test53.out test54.out
|
||||
|
||||
.SUFFIXES: .in .out
|
||||
|
||||
@@ -96,3 +96,4 @@ test47.out: test47.in
|
||||
test48.out: test48.in
|
||||
test51.out: test51.in
|
||||
test53.out: test53.in
|
||||
test54.out: test54.in
|
||||
|
@@ -17,7 +17,7 @@ SCRIPTS16 = test1.out test19.out test20.out test22.out \
|
||||
test23.out test24.out test28.out test29.out \
|
||||
test35.out test36.out test43.out \
|
||||
test44.out test45.out test46.out test47.out \
|
||||
test48.out test51.out test53.out
|
||||
test48.out test51.out test53.out test54.out
|
||||
|
||||
SCRIPTS = test3.out test4.out test5.out test6.out test7.out \
|
||||
test8.out test9.out test11.out test13.out test14.out \
|
||||
|
@@ -23,7 +23,7 @@ SCRIPTS = test1.out test3.out test4.out test5.out test6.out \
|
||||
test33.out test34.out test35.out test36.out test37.out \
|
||||
test38.out test39.out test40.out test41.out test42.out \
|
||||
test43.out test44.out test45.out test46.out test47.out \
|
||||
test48.out test51.out test53.out
|
||||
test48.out test51.out test53.out test54.out
|
||||
|
||||
.SUFFIXES: .in .out
|
||||
|
||||
|
@@ -4,7 +4,7 @@
|
||||
# Authors: Zoltan Arpadffy, <arpadffy@polarhome.com>
|
||||
# Sandor Kopanyi, <sandor.kopanyi@mailbox.hu>
|
||||
#
|
||||
# Last change: 2004 Jul 02
|
||||
# Last change: 2004 Dec 24
|
||||
#
|
||||
# This has been tested on VMS 6.2 to 7.2 on DEC Alpha and VAX.
|
||||
# Edit the lines in the Configuration section below to select.
|
||||
@@ -57,7 +57,7 @@ SCRIPT = test1.out test2.out test3.out test4.out test5.out \
|
||||
test33.out test34.out test35.out test36.out test37.out \
|
||||
test38.out test39.out test40.out test41.out test42.out \
|
||||
test43.out test44.out test45.out test46.out \
|
||||
test48.out test51.out test53.out
|
||||
test48.out test51.out test53.out test54.out
|
||||
|
||||
.IFDEF WANT_GUI
|
||||
SCRIPT_GUI = test16.out
|
||||
|
@@ -13,7 +13,8 @@ SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \
|
||||
test33.out test34.out test35.out test36.out test37.out \
|
||||
test38.out test39.out test40.out test41.out test42.out \
|
||||
test43.out test44.out test45.out test46.out test47.out \
|
||||
test48.out test49.out test51.out test52.out test53.out
|
||||
test48.out test49.out test51.out test52.out test53.out \
|
||||
test54.out
|
||||
|
||||
SCRIPTS_GUI = test16.out
|
||||
|
||||
|
17
src/testdir/test54.in
Normal file
17
src/testdir/test54.in
Normal file
@@ -0,0 +1,17 @@
|
||||
Some tests for buffer-local autocommands
|
||||
|
||||
STARTTEST
|
||||
:so small.vim
|
||||
:e xx
|
||||
:!rm -f test.out
|
||||
:au BufLeave <buffer> :!echo "buffer-local autommand in %" >> test.out
|
||||
:e somefile " here, autocommand for xx shall write test.out
|
||||
: " but autocommand shall not apply to buffer named <buffer>
|
||||
:bwipe xx " here, autocommand shall be auto-deleted
|
||||
:e xx " nothing shall be written
|
||||
:e somefile " nothing shall be written
|
||||
:qa!
|
||||
ENDTEST
|
||||
|
||||
start of test file xx
|
||||
end of test file xx
|
1
src/testdir/test54.ok
Normal file
1
src/testdir/test54.ok
Normal file
@@ -0,0 +1 @@
|
||||
buffer-local autommand in xx
|
Reference in New Issue
Block a user