home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / unix / vim-6.2.tar.bz2 / vim-6.2.tar / vim62 / runtime / syntax / manual.vim < prev    next >
Encoding:
Text File  |  2001-06-04  |  680 b   |  26 lines

  1. " Vim syntax support file
  2. " Maintainer:    Bram Moolenaar <Bram@vim.org>
  3. " Last Change:    2001 Jun 04
  4.  
  5. " This file is used for ":syntax manual".
  6. " It installs the Syntax autocommands, but no the FileType autocommands.
  7.  
  8. if !has("syntax")
  9.   finish
  10. endif
  11.  
  12. " Load the Syntax autocommands and set the default methods for highlighting.
  13. if !exists("syntax_on")
  14.   so <sfile>:p:h/synload.vim
  15. endif
  16.  
  17. let syntax_manual = 1
  18.  
  19. " Remove the connection between FileType and Syntax autocommands.
  20. silent! au! syntaxset FileType
  21.  
  22. " If the GUI is already running, may still need to install the FileType menu.
  23. if has("gui_running") && !exists("did_install_syntax_menu")
  24.   source $VIMRUNTIME/menu.vim
  25. endif
  26.