Install vim74
[msysgit.git] / share / vim / vim74 / syntax / synload.vim
blob48b5956b3ca8b943a067ebf375a02b6cb879431d
1 " Vim syntax support file
2 " Maintainer:   Bram Moolenaar <Bram@vim.org>
3 " Last Change:  2012 Sep 25
5 " This file sets up for syntax highlighting.
6 " It is loaded from "syntax.vim" and "manual.vim".
7 " 1. Set the default highlight groups.
8 " 2. Install Syntax autocommands for all the available syntax files.
10 if !has("syntax")
11   finish
12 endif
14 " let others know that syntax has been switched on
15 let syntax_on = 1
17 " Set the default highlighting colors.  Use a color scheme if specified.
18 if exists("colors_name")
19   exe "colors " . colors_name
20 else
21   runtime! syntax/syncolor.vim
22 endif
24 " Line continuation is used here, remove 'C' from 'cpoptions'
25 let s:cpo_save = &cpo
26 set cpo&vim
28 " First remove all old syntax autocommands.
29 au! Syntax
31 au Syntax *             call s:SynSet()
33 fun! s:SynSet()
34   " clear syntax for :set syntax=OFF  and any syntax name that doesn't exist
35   syn clear
36   if exists("b:current_syntax")
37     unlet b:current_syntax
38   endif
40   let s = expand("<amatch>")
41   if s == "ON"
42     " :set syntax=ON
43     if &filetype == ""
44       echohl ErrorMsg
45       echo "filetype unknown"
46       echohl None
47     endif
48     let s = &filetype
49   elseif s == "OFF"
50     let s = ""
51   endif
53   if s != ""
54     " Load the syntax file(s).  When there are several, separated by dots,
55     " load each in sequence.
56     for name in split(s, '\.')
57       exe "runtime! syntax/" . name . ".vim syntax/" . name . "/*.vim"
58     endfor
59   endif
60 endfun
63 " Handle adding doxygen to other languages (C, C++, C#, IDL)
64 au Syntax c,cpp,cs,idl,php
65         \ if (exists('b:load_doxygen_syntax') && b:load_doxygen_syntax)
66         \       || (exists('g:load_doxygen_syntax') && g:load_doxygen_syntax)
67         \   | runtime! syntax/doxygen.vim
68         \ | endif
71 " Source the user-specified syntax highlighting file
72 if exists("mysyntaxfile") && filereadable(expand(mysyntaxfile))
73   execute "source " . mysyntaxfile
74 endif
76 " Restore 'cpoptions'
77 let &cpo = s:cpo_save
78 unlet s:cpo_save