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

编辑器/阅读器

开发平台:

DOS

  1. Test for BufWritePre autocommand that deletes or unloads the buffer.
  2. STARTTEST
  3. :au BufWritePre Xxx1 bunload
  4. :au BufWritePre Xxx2 bdel
  5. /start of
  6. A1:.,/end of/w! Xxx1  " write test file Xxx1
  7. $r2:.,/end of/w! Xxx2   " write test file Xxx2
  8. :e! Xxx1                " start editing Xxx1
  9. :w                      " write it, will unload it and give an error msg
  10. :w! test.out            " Write contents of this file
  11. :e! Xxx2                " start editing Xxx2
  12. :bdel test.out          " remove test.out from the buffer list
  13. :w                      " write it, will delete the buffer and give an error msg
  14. :w >>test.out           " Append contents of this file
  15. :!rm Xxx1 Xxx2
  16. :qa!
  17. ENDTEST
  18. start of test file Xxx
  19. this is a test
  20. this is a test
  21. this is a test
  22. this is a test
  23. end of test file Xxx