7
|
1 " Vim syntax file
|
|
2 " Language: BibTeX (bibliographic database format for (La)TeX)
|
|
3 " Maintainer: Bernd Feige <Bernd.Feige@gmx.net>
|
|
4 " Filenames: *.bib
|
5763
|
5 " Last Change: 2014 Mar 26
|
7
|
6
|
|
7 " Thanks to those who pointed out problems with this file or supplied fixes!
|
|
8
|
|
9 " Initialization
|
|
10 " ==============
|
|
11 " For version 5.x: Clear all syntax items
|
|
12 " For version 6.x: Quit when a syntax file was already loaded
|
|
13 if version < 600
|
|
14 syntax clear
|
|
15 elseif exists("b:current_syntax")
|
|
16 finish
|
|
17 endif
|
|
18
|
3237
|
19 let s:cpo_save = &cpo
|
|
20 set cpo&vim
|
|
21
|
7
|
22 " Ignore case
|
|
23 syn case ignore
|
|
24
|
|
25 " Keywords
|
|
26 " ========
|
|
27 syn keyword bibType contained article book booklet conference inbook
|
|
28 syn keyword bibType contained incollection inproceedings manual
|
|
29 syn keyword bibType contained mastersthesis misc phdthesis
|
|
30 syn keyword bibType contained proceedings techreport unpublished
|
5763
|
31 syn keyword bibType contained string preamble
|
7
|
32
|
|
33 syn keyword bibEntryKw contained address annote author booktitle chapter
|
|
34 syn keyword bibEntryKw contained crossref edition editor howpublished
|
|
35 syn keyword bibEntryKw contained institution journal key month note
|
|
36 syn keyword bibEntryKw contained number organization pages publisher
|
|
37 syn keyword bibEntryKw contained school series title type volume year
|
|
38 " Non-standard:
|
|
39 syn keyword bibNSEntryKw contained abstract isbn issn keywords url
|
2908
|
40 " AMS mref http://www.ams.org/mref
|
|
41 syn keyword bibNSEntryKw contained mrclass mrnumber mrreviewer fjournal coden
|
7
|
42
|
|
43 " Clusters
|
|
44 " ========
|
|
45 syn cluster bibVarContents contains=bibUnescapedSpecial,bibBrace,bibParen
|
|
46 " This cluster is empty but things can be added externally:
|
|
47 "syn cluster bibCommentContents
|
|
48
|
|
49 " Matches
|
|
50 " =======
|
|
51 syn match bibUnescapedSpecial contained /[^\\][%&]/hs=s+1
|
|
52 syn match bibKey contained /\s*[^ \t}="]\+,/hs=s,he=e-1 nextgroup=bibField
|
|
53 syn match bibVariable contained /[^{}," \t=]/
|
484
|
54 syn region bibComment start=/./ end=/^\s*@/me=e-1 contains=@bibCommentContents nextgroup=bibEntry
|
7
|
55 syn region bibQuote contained start=/"/ end=/"/ skip=/\(\\"\)/ contains=@bibVarContents
|
|
56 syn region bibBrace contained start=/{/ end=/}/ skip=/\(\\[{}]\)/ contains=@bibVarContents
|
|
57 syn region bibParen contained start=/(/ end=/)/ skip=/\(\\[()]\)/ contains=@bibVarContents
|
|
58 syn region bibField contained start="\S\+\s*=\s*" end=/[}),]/me=e-1 contains=bibEntryKw,bibNSEntryKw,bibBrace,bibParen,bibQuote,bibVariable
|
|
59 syn region bibEntryData contained start=/[{(]/ms=e+1 end=/[})]/me=e-1 contains=bibKey,bibField
|
|
60 " Actually, 5.8 <= Vim < 6.0 would ignore the `fold' keyword anyway, but Vim<5.8 would produce
|
|
61 " an error, so we explicitly distinguish versions with and without folding functionality:
|
|
62 if version < 600
|
2908
|
63 syn region bibEntry start=/@\S\+\s*[{(]/ end=/^\s*[})]/ transparent contains=bibType,bibEntryData nextgroup=bibComment
|
7
|
64 else
|
2908
|
65 syn region bibEntry start=/@\S\+\s*[{(]/ end=/^\s*[})]/ transparent fold contains=bibType,bibEntryData nextgroup=bibComment
|
7
|
66 endif
|
2908
|
67 syn region bibComment2 start=/@Comment\s*[{(]/ end=/^\s*[})]/me=e-1 contains=@bibCommentContents nextgroup=bibEntry
|
7
|
68
|
|
69 " Synchronization
|
|
70 " ===============
|
|
71 syn sync match All grouphere bibEntry /^\s*@/
|
|
72 syn sync maxlines=200
|
|
73 syn sync minlines=50
|
|
74
|
|
75 " Highlighting defaults
|
|
76 " =====================
|
|
77 " Define the default highlighting.
|
|
78 " For version 5.7 and earlier: only when not done already
|
|
79 " For version 5.8 and later: only when an item doesn't have highlighting yet
|
|
80 if version >= 508 || !exists("did_bib_syn_inits")
|
|
81 if version < 508
|
|
82 let did_bib_syn_inits = 1
|
|
83 command -nargs=+ HiLink hi link <args>
|
|
84 else
|
|
85 command -nargs=+ HiLink hi def link <args>
|
|
86 endif
|
|
87 HiLink bibType Identifier
|
|
88 HiLink bibEntryKw Statement
|
|
89 HiLink bibNSEntryKw PreProc
|
|
90 HiLink bibKey Special
|
|
91 HiLink bibVariable Constant
|
|
92 HiLink bibUnescapedSpecial Error
|
|
93 HiLink bibComment Comment
|
484
|
94 HiLink bibComment2 Comment
|
7
|
95 delcommand HiLink
|
|
96 endif
|
|
97
|
|
98 let b:current_syntax = "bib"
|
3237
|
99
|
|
100 let &cpo = s:cpo_save
|
|
101 unlet s:cpo_save
|