Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Vim syntax file |
| 2 | " Language: BibTeX (bibliographic database format for (La)TeX) |
| 3 | " Maintainer: Bernd Feige <Bernd.Feige@gmx.net> |
| 4 | " Filenames: *.bib |
Bram Moolenaar | 76f3b1a | 2014-03-27 22:30:07 +0100 | [diff] [blame] | 5 | " Last Change: 2014 Mar 26 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | b6b046b | 2011-12-30 13:11:27 +0100 | [diff] [blame] | 19 | let s:cpo_save = &cpo |
| 20 | set cpo&vim |
| 21 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 76f3b1a | 2014-03-27 22:30:07 +0100 | [diff] [blame] | 31 | syn keyword bibType contained string preamble |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 251e191 | 2011-06-19 05:09:16 +0200 | [diff] [blame] | 40 | " AMS mref http://www.ams.org/mref |
| 41 | syn keyword bibNSEntryKw contained mrclass mrnumber mrreviewer fjournal coden |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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=]/ |
Bram Moolenaar | 8aff23a | 2005-08-19 20:40:30 +0000 | [diff] [blame] | 54 | syn region bibComment start=/./ end=/^\s*@/me=e-1 contains=@bibCommentContents nextgroup=bibEntry |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 251e191 | 2011-06-19 05:09:16 +0200 | [diff] [blame] | 63 | syn region bibEntry start=/@\S\+\s*[{(]/ end=/^\s*[})]/ transparent contains=bibType,bibEntryData nextgroup=bibComment |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 64 | else |
Bram Moolenaar | 251e191 | 2011-06-19 05:09:16 +0200 | [diff] [blame] | 65 | syn region bibEntry start=/@\S\+\s*[{(]/ end=/^\s*[})]/ transparent fold contains=bibType,bibEntryData nextgroup=bibComment |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 66 | endif |
Bram Moolenaar | 251e191 | 2011-06-19 05:09:16 +0200 | [diff] [blame] | 67 | syn region bibComment2 start=/@Comment\s*[{(]/ end=/^\s*[})]/me=e-1 contains=@bibCommentContents nextgroup=bibEntry |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 8aff23a | 2005-08-19 20:40:30 +0000 | [diff] [blame] | 94 | HiLink bibComment2 Comment |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 95 | delcommand HiLink |
| 96 | endif |
| 97 | |
| 98 | let b:current_syntax = "bib" |
Bram Moolenaar | b6b046b | 2011-12-30 13:11:27 +0100 | [diff] [blame] | 99 | |
| 100 | let &cpo = s:cpo_save |
| 101 | unlet s:cpo_save |