home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / textedit / vim.zip / MSDOS.DOC < prev    next >
Text File  |  1993-04-08  |  3KB  |  61 lines

  1. This file contains the particularities for the MSDOS version of Vim.
  2.  
  3. If Vim produces all kinds of garbage on the screen you need to install
  4. ansi.sys (or equivalent).
  5.  
  6. If the "tx" (textmode) option is set (which is the default), Vim will accept a 
  7. single <LF> or a <CR><LF> pair for end-of-line. When writing a file Vim will 
  8. use <CR><LF>. Thus if you edit a file and write it, <LF> is replaced with 
  9. <CR><LF>. Single <CR> characters are lost. If the "tx" option is not set the 
  10. single <LF> will be used for end-of-line. A <CR> will be shown as ^M.
  11. You can use Vim to replace <LF> by <CR><LF> by reading in any mode and 
  12. writing in text mode. You can use Vim to replace <CR><LF> by <LF> by reading 
  13. in text mode and writing in non-text mode.
  14.  
  15. Script files contain single <CR> characters. If you want to edit a script file 
  16. you should reset the textmode option before loading the file.
  17.  
  18. The default help filename is "$VIM\vim.hlp". If the environment variable $VIM 
  19. is not defined or the file is not found, the DOS search path is used to 
  20. search for the file "vim.hlp". If you do not want to put "vim.hlp" in your 
  21. search path, use the command ":set helpfile=pathname" to tell Vim where the 
  22. help file is.
  23.  
  24. The files "_vimrc" and "_exrc" are used instead of ".vimrc" and ".exrc".
  25. The files "$VIM\_vimrc" and "$VIM\_exrc" are used instead of "s:.vimrc" and 
  26. "s:.exrc".
  27.  
  28. Use CTRL-break instead of CTRL-C to interrupt searches. The CTRL-C is not
  29. detected until a key is read.
  30.  
  31. Use CTRL-arrow-left and CTRL-arrow-right instead of SHIFT-arrow-left and 
  32. SHIFT-arrow-right. The arrow-up and arrow-down cannot be used with SHIFT or 
  33. CTRL.
  34.  
  35. Temporary files (for filtering) are put in the current directory.
  36.  
  37. The default for the sh (shell) option is "command". External commands are 
  38. started with "command /c <command_name>". Typing CTRL-Z starts a new command 
  39. shell. Return to Vim with "exit".
  40.  
  41.  
  42. MS-DOS allows for only one filename extention. Therefore, in the original 
  43. filename the '.' is replaced by a '_', the name is truncated to 8 characters 
  44. and the new extention ".vim" or ".bak" is appended. Two examples: "test.c" 
  45. becomes "test_c.bak", "ditiseen.tst" becomes "ditiseen.bak". The 'shortname' 
  46. option is not available.
  47.  
  48. The MS-DOS binary was compiled with Turbo-C version 2.0 (yes, it's old). You 
  49. may get some "argument never used" warning messages. They can be ignored. If 
  50. you get all kinds of strange error messages when compiling, you have to add 
  51. <CR> characters at the end of each line. This can be done with the addcr 
  52. program: "make addcr". This will compile addcr.c to addcr.exe and execute 
  53. the addcr.bat file.
  54.  
  55. All text is kept in memory. This limits the size of the file you can edit,
  56. the number of undo levels that can be remembered, etc.. If Vim gives an "Out 
  57. of memory" warning you should stop editing. Result of further editing actions 
  58. is unpredictable.
  59.  
  60. The *.info files are for the Amiga. You don't need them with MSDOS.
  61.