home *** CD-ROM | disk | FTP | other *** search
/ ftp.editplus.com / ftp.editplus.com.tar / ftp.editplus.com / epp221.zip / cpp.acp < prev    next >
Text File  |  2003-06-28  |  416b  |  47 lines

  1. #TITLE=C/C++
  2. ; EditPlus Auto-completion file v1.0 written by ES-Computing.
  3. ; This file is provided as a default auto-completion file for C/C++ and Java.
  4.  
  5. #CASE=y
  6.  
  7. #T=if
  8. if (^!)
  9. {
  10. }
  11. #T=while
  12. while (^!)
  13. {
  14. }
  15. #T=for
  16. for (^!; ; )
  17. {
  18. }
  19. #T=switch
  20. switch (^!)
  21. {
  22. case :
  23.  
  24. }
  25. #T=do
  26. do
  27. {
  28. }
  29. while (^!);
  30. #T=class
  31. class ^!
  32. {
  33. };
  34. #T=struct
  35. struct ^!
  36. {
  37. };
  38. #T=try
  39. try
  40. {
  41.     ^!
  42. }
  43. catch ()
  44. {
  45. }
  46. #
  47.