Mercurial > vim
annotate runtime/syntax/bib.vim @ 10722:7598ce51bf2a v8.0.0251
patch 8.0.0251: not easy to select Python 2 or 3
commit https://github.com/vim/vim/commit/f42dd3c3901ea0ba38e67a616aea9953cae81b8d
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 28 16:06:38 2017 +0100
patch 8.0.0251: not easy to select Python 2 or 3
Problem: It is not so easy to write a script that works with both Python 2
and Python 3, even when the Python code works with both.
Solution: Add 'pyxversion', :pyx, etc. (Marc Weber, Ken Takata)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 28 Jan 2017 16:15:04 +0100 |
parents | 01521953bdf1 |
children | 3b26420fc639 |
rev | line source |
---|---|
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 | |
10191
01521953bdf1
commit https://github.com/vim/vim/commit/220adb1e9f9e0b27d28185167d2730bf2f93057d
Christian Brabandt <cb@256bit.org>
parents:
10051
diff
changeset
|
5 " Last Change: 2016 Sep 12 |
7 | 6 |
7 " Thanks to those who pointed out problems with this file or supplied fixes! | |
8 | |
9 " Initialization | |
10 " ============== | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
11 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
12 if exists("b:current_syntax") |
7 | 13 finish |
14 endif | |
15 | |
3237 | 16 let s:cpo_save = &cpo |
17 set cpo&vim | |
18 | |
7 | 19 " Ignore case |
20 syn case ignore | |
21 | |
22 " Keywords | |
23 " ======== | |
24 syn keyword bibType contained article book booklet conference inbook | |
25 syn keyword bibType contained incollection inproceedings manual | |
26 syn keyword bibType contained mastersthesis misc phdthesis | |
27 syn keyword bibType contained proceedings techreport unpublished | |
5763 | 28 syn keyword bibType contained string preamble |
7 | 29 |
30 syn keyword bibEntryKw contained address annote author booktitle chapter | |
31 syn keyword bibEntryKw contained crossref edition editor howpublished | |
32 syn keyword bibEntryKw contained institution journal key month note | |
33 syn keyword bibEntryKw contained number organization pages publisher | |
34 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
|
35 |
ecb621205ed1
commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
36 " 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
|
37 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
|
38 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
|
39 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
|
40 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
|
41 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
|
42 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
|
43 |
ecb621205ed1
commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
44 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
|
45 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
|
46 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
|
47 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
|
48 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
|
49 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
|
50 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
|
51 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
|
52 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
|
53 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
|
54 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
|
55 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
|
56 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
|
57 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
|
58 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
|
59 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
|
60 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
|
61 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
|
62 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
|
63 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
|
64 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
|
65 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
|
66 syn keyword bibEntryKw contained primaryclass |
ecb621205ed1
commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
67 |
7 | 68 " Non-standard: |
2908 | 69 " AMS mref http://www.ams.org/mref |
70 syn keyword bibNSEntryKw contained mrclass mrnumber mrreviewer fjournal coden | |
7 | 71 |
72 " Clusters | |
73 " ======== | |
10191
01521953bdf1
commit https://github.com/vim/vim/commit/220adb1e9f9e0b27d28185167d2730bf2f93057d
Christian Brabandt <cb@256bit.org>
parents:
10051
diff
changeset
|
74 syn cluster bibVarContents contains=bibUnescapedSpecial,bibBrace,bibParen,bibMath |
7 | 75 " This cluster is empty but things can be added externally: |
76 "syn cluster bibCommentContents | |
77 | |
78 " Matches | |
79 " ======= | |
80 syn match bibUnescapedSpecial contained /[^\\][%&]/hs=s+1 | |
81 syn match bibKey contained /\s*[^ \t}="]\+,/hs=s,he=e-1 nextgroup=bibField | |
82 syn match bibVariable contained /[^{}," \t=]/ | |
484 | 83 syn region bibComment start=/./ end=/^\s*@/me=e-1 contains=@bibCommentContents nextgroup=bibEntry |
10191
01521953bdf1
commit https://github.com/vim/vim/commit/220adb1e9f9e0b27d28185167d2730bf2f93057d
Christian Brabandt <cb@256bit.org>
parents:
10051
diff
changeset
|
84 syn region bibMath contained start=/\$/ end=/\$/ skip=/\(\\\$\)/ |
7 | 85 syn region bibQuote contained start=/"/ end=/"/ skip=/\(\\"\)/ contains=@bibVarContents |
86 syn region bibBrace contained start=/{/ end=/}/ skip=/\(\\[{}]\)/ contains=@bibVarContents | |
87 syn region bibParen contained start=/(/ end=/)/ skip=/\(\\[()]\)/ contains=@bibVarContents | |
88 syn region bibField contained start="\S\+\s*=\s*" end=/[}),]/me=e-1 contains=bibEntryKw,bibNSEntryKw,bibBrace,bibParen,bibQuote,bibVariable | |
89 syn region bibEntryData contained start=/[{(]/ms=e+1 end=/[})]/me=e-1 contains=bibKey,bibField | |
90 " Actually, 5.8 <= Vim < 6.0 would ignore the `fold' keyword anyway, but Vim<5.8 would produce | |
91 " an error, so we explicitly distinguish versions with and without folding functionality: | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
92 syn region bibEntry start=/@\S\+\s*[{(]/ end=/^\s*[})]/ transparent fold contains=bibType,bibEntryData nextgroup=bibComment |
2908 | 93 syn region bibComment2 start=/@Comment\s*[{(]/ end=/^\s*[})]/me=e-1 contains=@bibCommentContents nextgroup=bibEntry |
7 | 94 |
95 " Synchronization | |
96 " =============== | |
97 syn sync match All grouphere bibEntry /^\s*@/ | |
98 syn sync maxlines=200 | |
99 syn sync minlines=50 | |
100 | |
101 " Highlighting defaults | |
102 " ===================== | |
103 " Define the default highlighting. | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
104 " Only when an item doesn't have highlighting yet |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
105 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
106 hi def link bibType Identifier |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
107 hi def link bibEntryKw Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
108 hi def link bibNSEntryKw PreProc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
109 hi def link bibKey Special |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
110 hi def link bibVariable Constant |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
111 hi def link bibUnescapedSpecial Error |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
112 hi def link bibComment Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
113 hi def link bibComment2 Comment |
7 | 114 |
115 let b:current_syntax = "bib" | |
3237 | 116 |
117 let &cpo = s:cpo_save | |
118 unlet s:cpo_save |