annotate runtime/syntax/bib.vim @ 9894:b01afb4e8f66 v7.4.2221

commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 16 21:58:41 2016 +0200 patch 7.4.2221 Problem: printf() does not support binary format. Solution: Add %b and %B. (Ozaki Kiichi)
author Christian Brabandt <cb@256bit.org>
date Tue, 16 Aug 2016 22:00:06 +0200
parents ecb621205ed1
children 43efa4f5a8ea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " Vim syntax file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 " Language: BibTeX (bibliographic database format for (La)TeX)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 " Maintainer: Bernd Feige <Bernd.Feige@gmx.net>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 " Filenames: *.bib
9227
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
5 " Last Change: 2016 May 31
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 " Thanks to those who pointed out problems with this file or supplied fixes!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 " Initialization
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 " ==============
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 " For version 5.x: Clear all syntax items
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 " For version 6.x: Quit when a syntax file was already loaded
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 if version < 600
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 syntax clear
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 elseif exists("b:current_syntax")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 finish
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18
3237
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
19 let s:cpo_save = &cpo
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
20 set cpo&vim
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
21
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 " Ignore case
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 syn case ignore
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25 " Keywords
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26 " ========
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27 syn keyword bibType contained article book booklet conference inbook
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 syn keyword bibType contained incollection inproceedings manual
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 syn keyword bibType contained mastersthesis misc phdthesis
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 syn keyword bibType contained proceedings techreport unpublished
5763
c52a655d927d Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3237
diff changeset
31 syn keyword bibType contained string preamble
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 syn keyword bibEntryKw contained address annote author booktitle chapter
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 syn keyword bibEntryKw contained crossref edition editor howpublished
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 syn keyword bibEntryKw contained institution journal key month note
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36 syn keyword bibEntryKw contained number organization pages publisher
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37 syn keyword bibEntryKw contained school series title type volume year
9227
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
38
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
39 " biblatex keywords, cf. http://mirrors.ctan.org/macros/latex/contrib/biblatex/doc/biblatex.pdf
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
40 syn keyword bibType contained mvbook bookinbook suppbook collection mvcollection suppcollection
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
41 syn keyword bibType contained online patent periodical suppperiodical mvproceedings reference
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
42 syn keyword bibType contained mvreference inreference report set thesis xdata customa customb
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
43 syn keyword bibType contained customc customd custome customf electronic www artwork audio bibnote
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
44 syn keyword bibType contained commentary image jurisdiction legislation legal letter movie music
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
45 syn keyword bibType contained performance review software standard video
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
46
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
47 syn keyword bibEntryKw contained abstract isbn issn keywords url
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
48 syn keyword bibEntryKw contained addendum afterwordannotation annotation annotator authortype
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
49 syn keyword bibEntryKw contained bookauthor bookpagination booksubtitle booktitleaddon
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
50 syn keyword bibEntryKw contained commentator date doi editora editorb editorc editortype
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
51 syn keyword bibEntryKw contained editoratype editorbtype editorctype eid entrysubtype
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
52 syn keyword bibEntryKw contained eprint eprintclass eprinttype eventdate eventtitle
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
53 syn keyword bibEntryKw contained eventtitleaddon file foreword holder indextitle
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
54 syn keyword bibEntryKw contained introduction isan ismn isrn issue issuesubtitle
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
55 syn keyword bibEntryKw contained issuetitle iswc journalsubtitle journaltitle label
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
56 syn keyword bibEntryKw contained language library location mainsubtitle maintitle
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
57 syn keyword bibEntryKw contained maintitleaddon nameaddon origdate origlanguage
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
58 syn keyword bibEntryKw contained origlocation origpublisher origtitle pagetotal
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
59 syn keyword bibEntryKw contained pagination part pubstate reprinttitle shortauthor
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
60 syn keyword bibEntryKw contained shorteditor shorthand shorthandintro shortjournal
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
61 syn keyword bibEntryKw contained shortseries shorttitle subtitle titleaddon translator
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
62 syn keyword bibEntryKw contained urldate venue version volumes entryset execute gender
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
63 syn keyword bibEntryKw contained langid langidopts ids indexsorttitle options presort
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
64 syn keyword bibEntryKw contained related relatedoptions relatedtype relatedstring
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
65 syn keyword bibEntryKw contained sortkey sortname sortshorthand sorttitle sortyear xdata
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
66 syn keyword bibEntryKw contained xref namea nameb namec nameatype namebtype namectype
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
67 syn keyword bibEntryKw contained lista listb listc listd liste listf usera userb userc
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
68 syn keyword bibEntryKw contained userd usere userf verba verbb verbc archiveprefix pdf
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
69 syn keyword bibEntryKw contained primaryclass
ecb621205ed1 commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents: 5763
diff changeset
70
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71 " Non-standard:
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 484
diff changeset
72 " AMS mref http://www.ams.org/mref
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 484
diff changeset
73 syn keyword bibNSEntryKw contained mrclass mrnumber mrreviewer fjournal coden
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75 " Clusters
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76 " ========
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 syn cluster bibVarContents contains=bibUnescapedSpecial,bibBrace,bibParen
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 " This cluster is empty but things can be added externally:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 "syn cluster bibCommentContents
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81 " Matches
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 " =======
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 syn match bibUnescapedSpecial contained /[^\\][%&]/hs=s+1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 syn match bibKey contained /\s*[^ \t}="]\+,/hs=s,he=e-1 nextgroup=bibField
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85 syn match bibVariable contained /[^{}," \t=]/
484
f012c4ed8c38 updated for version 7.0132
vimboss
parents: 7
diff changeset
86 syn region bibComment start=/./ end=/^\s*@/me=e-1 contains=@bibCommentContents nextgroup=bibEntry
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87 syn region bibQuote contained start=/"/ end=/"/ skip=/\(\\"\)/ contains=@bibVarContents
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88 syn region bibBrace contained start=/{/ end=/}/ skip=/\(\\[{}]\)/ contains=@bibVarContents
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 syn region bibParen contained start=/(/ end=/)/ skip=/\(\\[()]\)/ contains=@bibVarContents
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 syn region bibField contained start="\S\+\s*=\s*" end=/[}),]/me=e-1 contains=bibEntryKw,bibNSEntryKw,bibBrace,bibParen,bibQuote,bibVariable
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 syn region bibEntryData contained start=/[{(]/ms=e+1 end=/[})]/me=e-1 contains=bibKey,bibField
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 " Actually, 5.8 <= Vim < 6.0 would ignore the `fold' keyword anyway, but Vim<5.8 would produce
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 " an error, so we explicitly distinguish versions with and without folding functionality:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 if version < 600
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 484
diff changeset
95 syn region bibEntry start=/@\S\+\s*[{(]/ end=/^\s*[})]/ transparent contains=bibType,bibEntryData nextgroup=bibComment
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96 else
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 484
diff changeset
97 syn region bibEntry start=/@\S\+\s*[{(]/ end=/^\s*[})]/ transparent fold contains=bibType,bibEntryData nextgroup=bibComment
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98 endif
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 484
diff changeset
99 syn region bibComment2 start=/@Comment\s*[{(]/ end=/^\s*[})]/me=e-1 contains=@bibCommentContents nextgroup=bibEntry
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101 " Synchronization
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 " ===============
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103 syn sync match All grouphere bibEntry /^\s*@/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104 syn sync maxlines=200
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105 syn sync minlines=50
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
107 " Highlighting defaults
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 " =====================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
109 " Define the default highlighting.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
110 " For version 5.7 and earlier: only when not done already
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111 " For version 5.8 and later: only when an item doesn't have highlighting yet
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
112 if version >= 508 || !exists("did_bib_syn_inits")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
113 if version < 508
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
114 let did_bib_syn_inits = 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
115 command -nargs=+ HiLink hi link <args>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
116 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117 command -nargs=+ HiLink hi def link <args>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 HiLink bibType Identifier
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 HiLink bibEntryKw Statement
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121 HiLink bibNSEntryKw PreProc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122 HiLink bibKey Special
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123 HiLink bibVariable Constant
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124 HiLink bibUnescapedSpecial Error
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125 HiLink bibComment Comment
484
f012c4ed8c38 updated for version 7.0132
vimboss
parents: 7
diff changeset
126 HiLink bibComment2 Comment
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
127 delcommand HiLink
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
129
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
130 let b:current_syntax = "bib"
3237
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
131
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
132 let &cpo = s:cpo_save
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
133 unlet s:cpo_save