home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / vim53os2.zip / vim-5.3 / doc / os_mac.txt < prev    next >
Text File  |  1998-08-30  |  3KB  |  88 lines

  1. *os_mac.txt*    For Vim version 5.3.  Last modification: 1998 Aug 17
  2.  
  3.  
  4.           VIM REFERENCE MANUAL    by Bram Moolenaar
  5.  
  6.  
  7. There was a Mac port for version 3.0 of Vim.  Here are the first few lines
  8. from the old file:
  9.  
  10. VIM Release Notes
  11. Initial Macintosh release, VIM version 3.0
  12. 19 October 1994
  13.  
  14. Eric Fischer
  15. <enf1@midway.uchicago.edu>, <eric@jcp.uchicago.edu>, <etaoin@uchicago.edu>
  16. 5759 N. Guilford Ave
  17. Indianapolis IN 46220 USA
  18.  
  19.                                 *mac*
  20.                                 *macintosh*
  21.  
  22. This file documents the particularities of the macintosh version of Vim.
  23.  
  24. NOTE: This version 5, is still in the alpha stage
  25.  
  26. 1. Filename Convention        |mac-filename|
  27. 2. .vimrc an .vim files        |mac-vimfile|
  28. 3. Known Lack            |mac-lack|
  29. 4. Mac Bug Report        |mac-bug|
  30.  
  31.  
  32. ==============================================================================
  33.  
  34. 1. Filename Convention                    *mac-filename*
  35.  
  36. You can use either the unix or mac path separator or a mix of both. In order
  37. to determine if the specified filename is relative to the current folder or
  38. absolute (i.e. relative to the "Desktop"), the following algorithm is used:
  39.  
  40.     If the path start by a "/", the path is abosute
  41.     If the path start by a ":", the path is relative
  42.     If the path doesn't start by neither a "/" nor ":",
  43.       and a ":" is found before a "/" then the path is absolute
  44.  
  45. >    e /HD/text
  46. >    e HD:text
  47.     Edit the file "text" of the disk "HD"
  48. >    e :src:main.c
  49. >    e src/main.c
  50.     Edit the file "main.c" in the folder "src" in the current folder
  51. >    e os_mac.c
  52.     Edit the file "os_mac.c" in the current folder.
  53.  
  54. You can use the $VIM variable.
  55.  
  56. >    so $VIM:syntax:syntax.vim
  57.  
  58. ==============================================================================
  59.  
  60. 2. .vimrc and .vim files                *mac-vimfile*
  61.  
  62. The .vimrc, .gvimrc, *.vim files should always be saved in unix fileformat, th
  63. dos format might be use but the mac format cannot be handled.
  64.  
  65. ==============================================================================
  66.  
  67. 3. Mac Lack                        *mac-lack*
  68.  
  69. -The filenames containing both ":" and "/" are sometimes misinterpreted.
  70.   (just re-execute the command)
  71. -No filename expansion or wildcard yet
  72. -No standard menu
  73. -Can't use the command key
  74. -No grow box to resize the window
  75. -Scrollbar are not scrolling live, and  when only the arrorw or scroll area,
  76.    a limmit of 32 line or pageis scrolled.
  77.  
  78. ==============================================================================
  79.  
  80. 4. Mac Bug Report                    *mac-bug*
  81.  
  82. When reporting any Mac specific bug or feature change, makes sure to include
  83. the following address in the "To:" or "Copy To:" field.
  84.  
  85.  dstamant@nortel.ca
  86.  
  87.  vim:ts=8:sw=8:tw=78:
  88.