test4.in
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:1k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. Test for autocommand that changes current buffer on BufEnter event.
  2. Check if modelines are interpreted for the correct buffer.
  3. STARTTEST
  4. :set nocompatible
  5. :au BufEnter Xxx brew
  6. /start of
  7. :.,/end of/w! Xxx   " write test file Xxx
  8. :set ai modeline modelines=3
  9. :sp Xxx             " split to Xxx, autocmd will do :brew
  10. G?this is a
  11. othis should be auto-indented
  12. :                   " Append hello with autoindent to this file
  13. :au! BufEnter Xxx
  14. :buf Xxx            " go to Xxx, no autocmd anymore
  15. G?this is a
  16. othis should be in column 1:wq " append hello without autoindent to Xxx
  17. G:r Xxx             " include Xxx in the current file
  18. :?startstart?,$w! test.out
  19. :!rm Xxx
  20. :qa!
  21. ENDTEST
  22. startstart
  23. start of test file Xxx
  24. vim: set noai :
  25. this is a test
  26. this is a test
  27. this is a test
  28. this is a test
  29. end of test file Xxx