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

编辑器/阅读器

开发平台:

DOS

  1. /* vi:set ts=8 sts=4 sw=4:
  2.  *
  3.  * VIM - Vi IMproved by Bram Moolenaar
  4.  *
  5.  * Do ":help uganda"  in Vim to read copying and usage conditions.
  6.  * Do ":help credits" in Vim to see a list of people who contributed.
  7.  */
  8. /*
  9.  * Common MS-DOS and Win32 (Windows NT and Windows 95) defines.
  10.  *
  11.  * Names for the EXRC, HELP and temporary files.
  12.  * Some of these may have been defined in the makefile or feature.h.
  13.  */
  14. #ifndef USR_VIMRC_FILE
  15. # define USR_VIMRC_FILE "$HOME\_vimrc"
  16. #endif
  17. #ifndef USR_VIMRC_FILE2
  18. # define USR_VIMRC_FILE2 "$VIM\_vimrc"
  19. #endif
  20. #ifndef USR_EXRC_FILE
  21. # define USR_EXRC_FILE "$HOME\_exrc"
  22. #endif
  23. #ifndef USR_EXRC_FILE2
  24. # define USR_EXRC_FILE2 "$VIM\_exrc"
  25. #endif
  26. #ifdef USE_GUI
  27. # ifndef USR_GVIMRC_FILE
  28. #  define USR_GVIMRC_FILE "$HOME\_gvimrc"
  29. # endif
  30. # ifndef USR_GVIMRC_FILE2
  31. #  define USR_GVIMRC_FILE2 "$VIM\_gvimrc"
  32. # endif
  33. # ifndef SYS_MENU_FILE
  34. #  define SYS_MENU_FILE "$VIM\menu.vim"
  35. # endif
  36. #endif
  37. #ifdef VIMINFO
  38. # ifndef VIMINFO_FILE
  39. #  define VIMINFO_FILE "$HOME\_viminfo"
  40. # endif
  41. # ifndef VIMINFO_FILE2
  42. #  define VIMINFO_FILE2 "$VIM\_viminfo"
  43. # endif
  44. #endif
  45. #ifndef VIMRC_FILE
  46. # define VIMRC_FILE "_vimrc"
  47. #endif
  48. #ifndef EXRC_FILE
  49. # define EXRC_FILE "_exrc"
  50. #endif
  51. #ifdef USE_GUI
  52. # ifndef GVIMRC_FILE
  53. #  define GVIMRC_FILE "_gvimrc"
  54. # endif
  55. #endif
  56. #ifndef VIM_HLP
  57. # define VIM_HLP "$VIM\doc\help.txt"
  58. #endif
  59. #ifndef SYNTAX_FNAME
  60. # define SYNTAX_FNAME "$VIM\syntax\%s.vim"
  61. #endif
  62. #ifndef DEF_BDIR
  63. # define DEF_BDIR ".,c:\tmp,c:\temp" /* default for 'backupdir' */
  64. #endif
  65. #ifndef DEF_DIR
  66. # define DEF_DIR ".,c:\tmp,c:\temp" /* default for 'directory' */
  67. #endif
  68. #define ERRORFILE "errors.err"
  69. #define MAKEEF "vim##.err"
  70. #define CASE_INSENSITIVE_FILENAME   /* ignore case when comparing file names */
  71. #define SPACE_IN_FILENAME
  72. #define BACKSLASH_IN_FILENAME
  73. #define USE_CRNL /* lines end in CR-NL instead of NL */