Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 1 | " Vim syntax file |
| 2 | " Language: ReDIF |
| 3 | " Maintainer: Axel Castellane <axel.castellane@polytechnique.edu> |
Bram Moolenaar | 6aa5729 | 2021-08-14 21:25:52 +0200 | [diff] [blame] | 4 | " Last Change: 2021 Jul 28 |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 5 | " Original Author: Axel Castellane |
| 6 | " Source: http://openlib.org/acmes/root/docu/redif_1.html |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 7 | " File Extension: rdf |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 8 | " Note: The ReDIF format is used by RePEc. |
| 9 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 10 | " quit when a syntax file was already loaded |
| 11 | if exists("b:current_syntax") |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 12 | finish |
| 13 | endif |
| 14 | |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 15 | " ReDIF is case-insensitive |
| 16 | syntax case ignore |
| 17 | |
| 18 | " Structure: Some fields determine what fields can come next. For example: |
| 19 | " Template-Type |
| 20 | " *-Name |
| 21 | " File-URL |
| 22 | " *-Institution |
| 23 | " Those fields span a syntax region over several lines so that these regions |
| 24 | " can only contain their respective items. |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 25 | |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 26 | " Any line which is not a correct template or part of an argument is an error. |
| 27 | " This comes at the very beginning, so it has the lowest priority and will |
| 28 | " only match if nothing else did. |
| 29 | syntax match redifWrongLine /^.\+/ display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 30 | |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 31 | highlight def link redifWrongLine redifError |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 32 | |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 33 | " Comments must start with # and it must be the first character of the line, |
| 34 | " otherwise I believe that they are considered as part of an argument. |
| 35 | syntax match redifComment /^#.*/ containedin=ALL display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 36 | |
| 37 | " Defines the 9 possible multi-lines regions of Template-Type and the fields |
| 38 | " they can contain. |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 39 | syntax region redifRegionTemplatePaper start=/^Template-Type:\_s*ReDIF-Paper \d\+\.\d\+/ end=/^Template-Type:/me=s-1 contains=redifContainerFieldsPaper,redifWrongLine,redifRegionClusterAuthor,redifRegionClusterFile fold |
| 40 | syntax region redifRegionTemplateArticle start=/^Template-Type:\_s*ReDIF-Article \d\+\.\d\+/ end=/^Template-Type:/me=s-1 contains=redifContainerFieldsArticle,redifWrongLine,redifRegionClusterAuthor,redifRegionClusterFile fold |
| 41 | syntax region redifRegionTemplateChapter start=/^Template-Type:\_s*ReDIF-Chapter \d\+\.\d\+/ end=/^Template-Type:/me=s-1 contains=redifContainerFieldsChapter,redifWrongLine,redifRegionClusterAuthor,redifRegionClusterFile,redifRegionClusterProvider,redifRegionClusterPublisher,redifRegionClusterEditor fold |
| 42 | syntax region redifRegionTemplateBook start=/^Template-Type:\_s*ReDIF-Book \d\+\.\d\+/ end=/^Template-Type:/me=s-1 contains=redifContainerFieldsBook,redifWrongLine,redifRegionClusterAuthor,redifRegionClusterFile,redifRegionClusterProvider,redifRegionClusterPublisher,redifRegionClusterEditor fold |
| 43 | syntax region redifRegionTemplateSoftware start=/^Template-Type:\_s*ReDIF-Software \d\+\.\d\+/ end=/^Template-Type:/me=s-1 contains=redifContainerFieldsSoftware,redifWrongLine,redifRegionClusterAuthor,redifRegionClusterFile fold |
| 44 | syntax region redifRegionTemplateArchive start=/^Template-Type:\_s*ReDIF-Archive \d\+\.\d\+/ end=/^Template-Type:/me=s-1 contains=redifContainerFieldsArchive,redifWrongLine fold |
| 45 | syntax region redifRegionTemplateSeries start=/^Template-Type:\_s*ReDIF-Series \d\+\.\d\+/ end=/^Template-Type:/me=s-1 contains=redifContainerFieldsSeries,redifWrongLine,redifRegionClusterProvider,redifRegionClusterPublisher,redifRegionClusterEditor fold |
| 46 | syntax region redifRegionTemplateInstitution start=/^Template-Type:\_s*ReDIF-Institution \d\+\.\d\+/ end=/^Template-Type:/me=s-1 contains=redifContainerFieldsInstitution,redifWrongLine,redifRegionClusterPrimary,redifRegionClusterSecondary,redifRegionClusterTertiary,redifRegionClusterQuaternary fold |
| 47 | syntax region redifRegionTemplatePerson start=/^Template-Type:\_s*ReDIF-Person \d\+\.\d\+/ end=/^Template-Type:/me=s-1 contains=redifContainerFieldsPerson,redifWrongLine,redifRegionClusterWorkplace fold |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 48 | |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 49 | " All fields are foldable (These come before clusters, so they have lower |
| 50 | " priority). So they are contained in a foldable syntax region. |
| 51 | syntax region redifContainerFieldsPaper start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldTitle,redifFieldHandleOfWork,redifFieldLanguage,redifFieldContactEmail,redifFieldAbstract,redifFieldClassificationJEL,redifFieldKeywords,redifFieldNumber,redifFieldCreationDate,redifFieldRevisionDate,redifFieldPublicationStatus,redifFieldNote,redifFieldLength,redifFieldSeries,redifFieldAvailability,redifFieldOrderURL,redifFieldArticleHandle,redifFieldBookHandle,redifFieldChapterHandle,redifFieldPaperHandle,redifFieldSoftwareHandle,redifFieldRestriction,redifFieldPrice,redifFieldNotification,redifFieldPublicationType,redifFieldTemplateType,redifWrongLine contained transparent fold |
| 52 | syntax region redifContainerFieldsArticle start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldTitle,redifFieldHandleOfWork,redifFieldLanguage,redifFieldContactEmail,redifFieldAbstract,redifFieldClassificationJEL,redifFieldKeywords,redifFieldNumber,redifFieldCreationDate,redifFieldPublicationStatus,redifFieldOrderURL,redifFieldArticleHandle,redifFieldBookHandle,redifFieldChapterHandle,redifFieldPaperHandle,redifFieldSoftwareHandle,redifFieldRestriction,redifFieldPrice,redifFieldNotification,redifFieldPublicationType,redifFieldJournal,redifFieldVolume,redifFieldYear,redifFieldIssue,redifFieldMonth,redifFieldPages,redifFieldNumber,redifFieldArticleHandle,redifFieldBookHandle,redifFieldChapterHandle,redifFieldPaperHandle,redifFieldSoftwareHandle,redifFieldTemplateType,redifWrongLine contained transparent fold |
| 53 | syntax region redifContainerFieldsChapter start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldHandleOfWork,redifFieldTitle,redifFieldContactEmail,redifFieldAbstract,redifFieldClassificationJEL,redifFieldKeywords,redifFieldBookTitle,redifFieldYear,redifFieldMonth,redifFieldPages,redifFieldChapter,redifFieldVolume,redifFieldEdition,redifFieldSeries,redifFieldISBN,redifFieldPublicationStatus,redifFieldNote,redifFieldInBook,redifFieldOrderURL,redifFieldArticleHandle,redifFieldBookHandle,redifFieldChapterHandle,redifFieldPaperHandle,redifFieldSoftwareHandle,redifFieldTemplateType,redifWrongLine contained transparent fold |
| 54 | syntax region redifContainerFieldsBook start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldTitle,redifFieldHandleOfWork,redifFieldContactEmail,redifFieldYear,redifFieldMonth,redifFieldVolume,redifFieldEdition,redifFieldSeries,redifFieldISBN,redifFieldPublicationStatus,redifFieldNote,redifFieldAbstract,redifFieldClassificationJEL,redifFieldKeywords,redifFieldHasChapter,redifFieldPrice,redifFieldOrderURL,redifFieldNumber,redifFieldCreationDate,redifFieldPublicationDate,redifFieldArticleHandle,redifFieldBookHandle,redifFieldChapterHandle,redifFieldPaperHandle,redifFieldSoftwareHandle,redifFieldTemplateType,redifWrongLine contained transparent fold |
| 55 | syntax region redifContainerFieldsSoftware start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldHandleOfWork,redifFieldTitle,redifFieldProgrammingLanguage,redifFieldAbstract,redifFieldNumber,redifFieldVersion,redifFieldClassificationJEL,redifFieldKeywords,redifFieldSize,redifFieldSeries,redifFieldCreationDate,redifFieldRevisionDate,redifFieldNote,redifFieldRequires,redifFieldArticleHandle,redifFieldBookHandle,redifFieldChapterHandle,redifFieldPaperHandle,redifFieldSoftwareHandle,redifFieldTemplateType,redifWrongLine contained transparent fold |
| 56 | syntax region redifContainerFieldsArchive start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldHandleOfArchive,redifFieldURL,redifFieldMaintainerEmail,redifFieldName,redifFieldMaintainerName,redifFieldMaintainerPhone,redifFieldMaintainerFax,redifFieldClassificationJEL,redifFieldHomepage,redifFieldDescription,redifFieldNotification,redifFieldRestriction,redifFieldTemplateType,redifWrongLine contained transparent fold |
| 57 | syntax region redifContainerFieldsSeries start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldName,redifFieldHandleOfSeries,redifFieldMaintainerEmail,redifFieldType,redifFieldOrderEmail,redifFieldOrderHomepage,redifFieldOrderPostal,redifFieldPrice,redifFieldRestriction,redifFieldMaintainerPhone,redifFieldMaintainerFax,redifFieldMaintainerName,redifFieldDescription,redifFieldClassificationJEL,redifFieldKeywords,redifFieldNotification,redifFieldISSN,redifFieldFollowup,redifFieldPredecessor,redifFieldTemplateType,redifWrongLine contained transparent fold |
| 58 | syntax region redifContainerFieldsInstitution start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldHandleOfInstitution,redifFieldPrimaryDefunct,redifFieldSecondaryDefunct,redifFieldTertiaryDefunct,redifFieldTemplateType,redifWrongLine contained transparent fold |
| 59 | syntax region redifContainerFieldsPerson start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldHandleOfPerson,redifFieldNameFull,redifFieldNameFirst,redifFieldNameLast,redifFieldNamePrefix,redifFieldNameMiddle,redifFieldNameSuffix,redifFieldNameASCII,redifFieldEmail,redifFieldHomepage,redifFieldFax,redifFieldPostal,redifFieldPhone,redifFieldWorkplaceOrganization,redifFieldAuthorPaper,redifFieldAuthorArticle,redifFieldAuthorSoftware,redifFieldAuthorBook,redifFieldAuthorChapter,redifFieldEditorBook,redifFieldEditorSeries,redifFieldClassificationJEL,redifFieldShortId,redifFieldLastLoginDate,redifFieldRegisteredDate,redifWrongLine contained transparent fold |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 60 | |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 61 | " Defines the 10 possible clusters and what they can contain |
| 62 | " A field not in the cluster ends the cluster. |
| 63 | syntax region redifRegionClusterWorkplace start=/^Workplace-Name:/ skip=/^Workplace-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\S\{-}:/me=s-1 contained contains=redifWrongLine,redifContainerFieldsWorkplace fold |
| 64 | syntax region redifRegionClusterPrimary start=/^Primary-Name:/ skip=/^Primary-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\S\{-}:/me=s-1 contained contains=redifWrongLine,redifContainerFieldsPrimary fold |
| 65 | syntax region redifRegionClusterSecondary start=/^Secondary-Name:/ skip=/^Secondary-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\S\{-}:/me=s-1 contained contains=redifWrongLine,redifContainerFieldsSecondary fold |
| 66 | syntax region redifRegionClusterTertiary start=/^Tertiary-Name:/ skip=/^Tertiary-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\S\{-}:/me=s-1 contained contains=redifWrongLine,redifContainerFieldsTertiary fold |
| 67 | syntax region redifRegionClusterQuaternary start=/^Quaternary-Name:/ skip=/^Quaternary-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\S\{-}:/me=s-1 contained contains=redifWrongLine,redifContainerFieldsQuaternary fold |
| 68 | syntax region redifRegionClusterProvider start=/^Provider-Name:/ skip=/^Provider-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\S\{-}:/me=s-1 contained contains=redifWrongLine,redifContainerFieldsProvider fold |
| 69 | syntax region redifRegionClusterPublisher start=/^Publisher-Name:/ skip=/^Publisher-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\S\{-}:/me=s-1 contained contains=redifWrongLine,redifContainerFieldsPublisher fold |
| 70 | syntax region redifRegionClusterAuthor start=/^Author-Name:/ skip=/^Author-\%(Name\%(-First\|-Last\)\|Homepage\|Email\|Fax\|Postal\|Phone\|Person\|Workplace-Name\):/ end=/^\S\{-}:/me=s-1 contained contains=redifWrongLine,redifRegionClusterAuthorWorkplace,redifContainerFieldsAuthor fold |
| 71 | syntax region redifRegionClusterEditor start=/^Editor-Name:/ skip=/^Editor-\%(Name\%(-First\|-Last\)\|Homepage\|Email\|Fax\|Postal\|Phone\|Person\|Workplace-Name\):/ end=/^\S\{-}:/me=s-1 contained contains=redifWrongLine,redifRegionClusterEditorWorkplace,redifContainerFieldsEditor fold |
| 72 | syntax region redifRegionClusterFile start=/^File-URL:/ skip=/^File-\%(Format\|Function\|Size\|Restriction\):/ end=/^\S\{-}:/me=s-1 contained contains=redifWrongLine,redifContainerFieldsFile fold |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 73 | |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 74 | " The foldable containers of the clusters. |
| 75 | syntax region redifContainerFieldsWorkplace start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldWorkplaceName,redifFieldWorkplaceHomepage,redifFieldWorkplaceNameEnglish,redifFieldWorkplacePostal,redifFieldWorkplaceLocation,redifFieldWorkplaceEmail,redifFieldWorkplacePhone,redifFieldWorkplaceFax,redifFieldWorkplaceInstitution,redifWrongLine contained transparent fold |
| 76 | syntax region redifContainerFieldsPrimary start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldPrimaryName,redifFieldPrimaryHomepage,redifFieldPrimaryNameEnglish,redifFieldPrimaryPostal,redifFieldPrimaryLocation,redifFieldPrimaryEmail,redifFieldPrimaryPhone,redifFieldPrimaryFax,redifFieldPrimaryInstitution,redifWrongLine contained transparent fold |
| 77 | syntax region redifContainerFieldsSecondary start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldSecondaryName,redifFieldSecondaryHomepage,redifFieldSecondaryNameEnglish,redifFieldSecondaryPostal,redifFieldSecondaryLocation,redifFieldSecondaryEmail,redifFieldSecondaryPhone,redifFieldSecondaryFax,redifFieldSecondaryInstitution,redifWrongLine contained transparent fold |
| 78 | syntax region redifContainerFieldsTertiary start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldTertiaryName,redifFieldTertiaryHomepage,redifFieldTertiaryNameEnglish,redifFieldTertiaryPostal,redifFieldTertiaryLocation,redifFieldTertiaryEmail,redifFieldTertiaryPhone,redifFieldTertiaryFax,redifFieldTertiaryInstitution,redifWrongLine contained transparent fold |
| 79 | syntax region redifContainerFieldsQuaternary start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldQuaternaryName,redifFieldQuaternaryHomepage,redifFieldQuaternaryNameEnglish,redifFieldQuaternaryPostal,redifFieldQuaternaryLocation,redifFieldQuaternaryEmail,redifFieldQuaternaryPhone,redifFieldQuaternaryFax,redifFieldQuaternaryInstitution,redifWrongLine contained transparent fold |
| 80 | syntax region redifContainerFieldsProvider start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldProviderName,redifFieldProviderHomepage,redifFieldProviderNameEnglish,redifFieldProviderPostal,redifFieldProviderLocation,redifFieldProviderEmail,redifFieldProviderPhone,redifFieldProviderFax,redifFieldProviderInstitution,redifWrongLine contained transparent fold |
| 81 | syntax region redifContainerFieldsPublisher start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldPublisherName,redifFieldPublisherHomepage,redifFieldPublisherNameEnglish,redifFieldPublisherPostal,redifFieldPublisherLocation,redifFieldPublisherEmail,redifFieldPublisherPhone,redifFieldPublisherFax,redifFieldPublisherInstitution,redifWrongLine contained transparent fold |
| 82 | syntax region redifContainerFieldsAuthor start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldAuthorName,redifFieldAuthorNameFirst,redifFieldAuthorNameLast,redifFieldAuthorHomepage,redifFieldAuthorEmail,redifFieldAuthorFax,redifFieldAuthorPostal,redifFieldAuthorPhone,redifFieldAuthorPerson,redifWrongLine contained transparent fold |
| 83 | syntax region redifContainerFieldsEditor start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldEditorName,redifFieldEditorNameFirst,redifFieldEditorNameLast,redifFieldEditorHomepage,redifFieldEditorEmail,redifFieldEditorFax,redifFieldEditorPostal,redifFieldEditorPhone,redifFieldEditorPerson,redifWrongLine contained transparent fold |
| 84 | syntax region redifContainerFieldsFile start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldFileURL,redifFieldFileFormat,redifFieldFileFunction,redifFieldFileSize,redifFieldFileRestriction,redifWrongLine contained transparent fold |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 85 | |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 86 | " The two clusters in cluster (must be presented after to have priority over |
| 87 | " fields containers) |
| 88 | syntax region redifRegionClusterAuthorWorkplace start=/^Author-Workplace-Name:/ skip=/^Author-Workplace-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\S\{-}:/me=s-1 contained contains=redifWrongLine,redifContainerFieldsAuthorWorkplace fold |
| 89 | syntax region redifRegionClusterEditorWorkplace start=/^Editor-Workplace-Name:/ skip=/^Editor-Workplace-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\S\{-}:/me=s-1 contained contains=redifWrongLine,redifContainerFieldsEditorWorkplace fold |
| 90 | |
| 91 | " Their foldable fields containers |
| 92 | syntax region redifContainerFieldsAuthorWorkplace start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldAuthorWorkplaceName,redifFieldAuthorWorkplaceHomepage,redifFieldAuthorWorkplaceNameEnglish,redifFieldAuthorWorkplacePostal,redifFieldAuthorWorkplaceLocation,redifFieldAuthorWorkplaceEmail,redifFieldAuthorWorkplacePhone,redifFieldAuthorWorkplaceFax,redifFieldAuthorWorkplaceInstitution,redifWrongLine contained transparent fold |
| 93 | syntax region redifContainerFieldsEditorWorkplace start=/^\S\{-}:/ end=/^\S\{-}:/me=s-1 contains=redifFieldEditorWorkplaceName,redifFieldEditorWorkplaceHomepage,redifFieldEditorWorkplaceNameEnglish,redifFieldEditorWorkplacePostal,redifFieldEditorWorkplaceLocation,redifFieldEditorWorkplaceEmail,redifFieldEditorWorkplacePhone,redifFieldEditorWorkplaceFax,redifFieldEditorWorkplaceInstitution,redifWrongLine contained transparent fold |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 94 | |
| 95 | " All the possible fields |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 96 | " Note: The "Handle" field is handled a little bit differently, because it |
| 97 | " does not have the same meaning depending on the Template-Type. See: |
| 98 | " /redifFieldHandleOf.... |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 99 | syntax match redifFieldAbstract /^Abstract:/ skipwhite skipempty nextgroup=redifArgumentAbstract contained |
| 100 | syntax match redifFieldArticleHandle /^Article-Handle:/ skipwhite skipempty nextgroup=redifArgumentArticleHandle contained |
| 101 | syntax match redifFieldAuthorArticle /^Author-Article:/ skipwhite skipempty nextgroup=redifArgumentAuthorArticle contained |
| 102 | syntax match redifFieldAuthorBook /^Author-Book:/ skipwhite skipempty nextgroup=redifArgumentAuthorBook contained |
| 103 | syntax match redifFieldAuthorChapter /^Author-Chapter:/ skipwhite skipempty nextgroup=redifArgumentAuthorChapter contained |
| 104 | syntax match redifFieldAuthorEmail /^Author-Email:/ skipwhite skipempty nextgroup=redifArgumentAuthorEmail contained |
| 105 | syntax match redifFieldAuthorFax /^Author-Fax:/ skipwhite skipempty nextgroup=redifArgumentAuthorFax contained |
| 106 | syntax match redifFieldAuthorHomepage /^Author-Homepage:/ skipwhite skipempty nextgroup=redifArgumentAuthorHomepage contained |
| 107 | syntax match redifFieldAuthorName /^Author-Name:/ skipwhite skipempty nextgroup=redifArgumentAuthorName contained |
| 108 | syntax match redifFieldAuthorNameFirst /^Author-Name-First:/ skipwhite skipempty nextgroup=redifArgumentAuthorNameFirst contained |
| 109 | syntax match redifFieldAuthorNameLast /^Author-Name-Last:/ skipwhite skipempty nextgroup=redifArgumentAuthorNameLast contained |
| 110 | syntax match redifFieldAuthorPaper /^Author-Paper:/ skipwhite skipempty nextgroup=redifArgumentAuthorPaper contained |
| 111 | syntax match redifFieldAuthorPerson /^Author-Person:/ skipwhite skipempty nextgroup=redifArgumentAuthorPerson contained |
| 112 | syntax match redifFieldAuthorPhone /^Author-Phone:/ skipwhite skipempty nextgroup=redifArgumentAuthorPhone contained |
| 113 | syntax match redifFieldAuthorPostal /^Author-Postal:/ skipwhite skipempty nextgroup=redifArgumentAuthorPostal contained |
| 114 | syntax match redifFieldAuthorSoftware /^Author-Software:/ skipwhite skipempty nextgroup=redifArgumentAuthorSoftware contained |
| 115 | syntax match redifFieldAuthorWorkplaceEmail /^Author-Workplace-Email:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceEmail contained |
| 116 | syntax match redifFieldAuthorWorkplaceFax /^Author-Workplace-Fax:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceFax contained |
| 117 | syntax match redifFieldAuthorWorkplaceHomepage /^Author-Workplace-Homepage:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceHomepage contained |
| 118 | syntax match redifFieldAuthorWorkplaceInstitution /^Author-Workplace-Institution:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceInstitution contained |
| 119 | syntax match redifFieldAuthorWorkplaceLocation /^Author-Workplace-Location:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceLocation contained |
| 120 | syntax match redifFieldAuthorWorkplaceName /^Author-Workplace-Name:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceName contained |
| 121 | syntax match redifFieldAuthorWorkplaceNameEnglish /^Author-Workplace-Name-English:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceNameEnglish contained |
| 122 | syntax match redifFieldAuthorWorkplacePhone /^Author-Workplace-Phone:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplacePhone contained |
| 123 | syntax match redifFieldAuthorWorkplacePostal /^Author-Workplace-Postal:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplacePostal contained |
| 124 | syntax match redifFieldAvailability /^Availability:/ skipwhite skipempty nextgroup=redifArgumentAvailability contained |
| 125 | syntax match redifFieldBookHandle /^Book-Handle:/ skipwhite skipempty nextgroup=redifArgumentBookHandle contained |
| 126 | syntax match redifFieldBookTitle /^Book-Title:/ skipwhite skipempty nextgroup=redifArgumentBookTitle contained |
| 127 | syntax match redifFieldChapterHandle /^Chapter-Handle:/ skipwhite skipempty nextgroup=redifArgumentChapterHandle contained |
| 128 | syntax match redifFieldChapter /^Chapter:/ skipwhite skipempty nextgroup=redifArgumentChapter contained |
| 129 | syntax match redifFieldClassificationJEL /^Classification-JEL:/ skipwhite skipempty nextgroup=redifArgumentClassificationJEL contained |
| 130 | syntax match redifFieldContactEmail /^Contact-Email:/ skipwhite skipempty nextgroup=redifArgumentContactEmail contained |
| 131 | syntax match redifFieldCreationDate /^Creation-Date:/ skipwhite skipempty nextgroup=redifArgumentCreationDate contained |
| 132 | syntax match redifFieldDescription /^Description:/ skipwhite skipempty nextgroup=redifArgumentDescription contained |
| 133 | syntax match redifFieldEdition /^Edition:/ skipwhite skipempty nextgroup=redifArgumentEdition contained |
| 134 | syntax match redifFieldEditorBook /^Editor-Book:/ skipwhite skipempty nextgroup=redifArgumentEditorBook contained |
| 135 | syntax match redifFieldEditorEmail /^Editor-Email:/ skipwhite skipempty nextgroup=redifArgumentEditorEmail contained |
| 136 | syntax match redifFieldEditorFax /^Editor-Fax:/ skipwhite skipempty nextgroup=redifArgumentEditorFax contained |
| 137 | syntax match redifFieldEditorHomepage /^Editor-Homepage:/ skipwhite skipempty nextgroup=redifArgumentEditorHomepage contained |
| 138 | syntax match redifFieldEditorName /^Editor-Name:/ skipwhite skipempty nextgroup=redifArgumentEditorName contained |
| 139 | syntax match redifFieldEditorNameFirst /^Editor-Name-First:/ skipwhite skipempty nextgroup=redifArgumentEditorNameFirst contained |
| 140 | syntax match redifFieldEditorNameLast /^Editor-Name-Last:/ skipwhite skipempty nextgroup=redifArgumentEditorNameLast contained |
| 141 | syntax match redifFieldEditorPerson /^Editor-Person:/ skipwhite skipempty nextgroup=redifArgumentEditorPerson contained |
| 142 | syntax match redifFieldEditorPhone /^Editor-Phone:/ skipwhite skipempty nextgroup=redifArgumentEditorPhone contained |
| 143 | syntax match redifFieldEditorPostal /^Editor-Postal:/ skipwhite skipempty nextgroup=redifArgumentEditorPostal contained |
| 144 | syntax match redifFieldEditorSeries /^Editor-Series:/ skipwhite skipempty nextgroup=redifArgumentEditorSeries contained |
| 145 | syntax match redifFieldEditorWorkplaceEmail /^Editor-Workplace-Email:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceEmail contained |
| 146 | syntax match redifFieldEditorWorkplaceFax /^Editor-Workplace-Fax:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceFax contained |
| 147 | syntax match redifFieldEditorWorkplaceHomepage /^Editor-Workplace-Homepage:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceHomepage contained |
| 148 | syntax match redifFieldEditorWorkplaceInstitution /^Editor-Workplace-Institution:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceInstitution contained |
| 149 | syntax match redifFieldEditorWorkplaceLocation /^Editor-Workplace-Location:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceLocation contained |
| 150 | syntax match redifFieldEditorWorkplaceName /^Editor-Workplace-Name:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceName contained |
| 151 | syntax match redifFieldEditorWorkplaceNameEnglish /^Editor-Workplace-Name-English:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceNameEnglish contained |
| 152 | syntax match redifFieldEditorWorkplacePhone /^Editor-Workplace-Phone:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplacePhone contained |
| 153 | syntax match redifFieldEditorWorkplacePostal /^Editor-Workplace-Postal:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplacePostal contained |
| 154 | syntax match redifFieldEmail /^Email:/ skipwhite skipempty nextgroup=redifArgumentEmail contained |
| 155 | syntax match redifFieldFax /^Fax:/ skipwhite skipempty nextgroup=redifArgumentFax contained |
| 156 | syntax match redifFieldFileFormat /^File-Format:/ skipwhite skipempty nextgroup=redifArgumentFileFormat contained |
| 157 | syntax match redifFieldFileFunction /^File-Function:/ skipwhite skipempty nextgroup=redifArgumentFileFunction contained |
| 158 | syntax match redifFieldFileRestriction /^File-Restriction:/ skipwhite skipempty nextgroup=redifArgumentFileRestriction contained |
| 159 | syntax match redifFieldFileSize /^File-Size:/ skipwhite skipempty nextgroup=redifArgumentFileSize contained |
| 160 | syntax match redifFieldFileURL /^File-URL:/ skipwhite skipempty nextgroup=redifArgumentFileURL contained |
| 161 | syntax match redifFieldFollowup /^Followup:/ skipwhite skipempty nextgroup=redifArgumentFollowup contained |
| 162 | syntax match redifFieldHandleOfArchive /^Handle:/ skipwhite skipempty nextgroup=redifArgumentHandleOfArchive contained |
| 163 | syntax match redifFieldHandleOfInstitution /^Handle:/ skipwhite skipempty nextgroup=redifArgumentHandleOfInstitution contained |
| 164 | syntax match redifFieldHandleOfPerson /^Handle:/ skipwhite skipempty nextgroup=redifArgumentHandleOfPerson contained |
| 165 | syntax match redifFieldHandleOfSeries /^Handle:/ skipwhite skipempty nextgroup=redifArgumentHandleOfSeries contained |
| 166 | syntax match redifFieldHandleOfWork /^Handle:/ skipwhite skipempty nextgroup=redifArgumentHandleOfWork contained |
| 167 | syntax match redifFieldHasChapter /^HasChapter:/ skipwhite skipempty nextgroup=redifArgumentHasChapter contained |
| 168 | syntax match redifFieldHomepage /^Homepage:/ skipwhite skipempty nextgroup=redifArgumentHomepage contained |
| 169 | syntax match redifFieldInBook /^In-Book:/ skipwhite skipempty nextgroup=redifArgumentInBook contained |
| 170 | syntax match redifFieldISBN /^ISBN:/ skipwhite skipempty nextgroup=redifArgumentISBN contained |
| 171 | syntax match redifFieldISSN /^ISSN:/ skipwhite skipempty nextgroup=redifArgumentISSN contained |
| 172 | syntax match redifFieldIssue /^Issue:/ skipwhite skipempty nextgroup=redifArgumentIssue contained |
| 173 | syntax match redifFieldJournal /^Journal:/ skipwhite skipempty nextgroup=redifArgumentJournal contained |
| 174 | syntax match redifFieldKeywords /^Keywords:/ skipwhite skipempty nextgroup=redifArgumentKeywords contained |
| 175 | syntax match redifFieldKeywords /^Keywords:/ skipwhite skipempty nextgroup=redifArgumentKeywords contained |
| 176 | syntax match redifFieldLanguage /^Language:/ skipwhite skipempty nextgroup=redifArgumentLanguage contained |
| 177 | syntax match redifFieldLastLoginDate /^Last-Login-Date:/ skipwhite skipempty nextgroup=redifArgumentLastLoginDate contained |
| 178 | syntax match redifFieldLength /^Length:/ skipwhite skipempty nextgroup=redifArgumentLength contained |
| 179 | syntax match redifFieldMaintainerEmail /^Maintainer-Email:/ skipwhite skipempty nextgroup=redifArgumentMaintainerEmail contained |
| 180 | syntax match redifFieldMaintainerFax /^Maintainer-Fax:/ skipwhite skipempty nextgroup=redifArgumentMaintainerFax contained |
| 181 | syntax match redifFieldMaintainerName /^Maintainer-Name:/ skipwhite skipempty nextgroup=redifArgumentMaintainerName contained |
| 182 | syntax match redifFieldMaintainerPhone /^Maintainer-Phone:/ skipwhite skipempty nextgroup=redifArgumentMaintainerPhone contained |
| 183 | syntax match redifFieldMonth /^Month:/ skipwhite skipempty nextgroup=redifArgumentMonth contained |
| 184 | syntax match redifFieldNameASCII /^Name-ASCII:/ skipwhite skipempty nextgroup=redifArgumentNameASCII contained |
| 185 | syntax match redifFieldNameFirst /^Name-First:/ skipwhite skipempty nextgroup=redifArgumentNameFirst contained |
| 186 | syntax match redifFieldNameFull /^Name-Full:/ skipwhite skipempty nextgroup=redifArgumentNameFull contained |
| 187 | syntax match redifFieldNameLast /^Name-Last:/ skipwhite skipempty nextgroup=redifArgumentNameLast contained |
| 188 | syntax match redifFieldNameMiddle /^Name-Middle:/ skipwhite skipempty nextgroup=redifArgumentNameMiddle contained |
| 189 | syntax match redifFieldNamePrefix /^Name-Prefix:/ skipwhite skipempty nextgroup=redifArgumentNamePrefix contained |
| 190 | syntax match redifFieldNameSuffix /^Name-Suffix:/ skipwhite skipempty nextgroup=redifArgumentNameSuffix contained |
| 191 | syntax match redifFieldName /^Name:/ skipwhite skipempty nextgroup=redifArgumentName contained |
| 192 | syntax match redifFieldNote /^Note:/ skipwhite skipempty nextgroup=redifArgumentNote contained |
| 193 | syntax match redifFieldNotification /^Notification:/ skipwhite skipempty nextgroup=redifArgumentNotification contained |
| 194 | syntax match redifFieldNumber /^Number:/ skipwhite skipempty nextgroup=redifArgumentNumber contained |
| 195 | syntax match redifFieldOrderEmail /^Order-Email:/ skipwhite skipempty nextgroup=redifArgumentOrderEmail contained |
| 196 | syntax match redifFieldOrderHomepage /^Order-Homepage:/ skipwhite skipempty nextgroup=redifArgumentOrderHomepage contained |
| 197 | syntax match redifFieldOrderPostal /^Order-Postal:/ skipwhite skipempty nextgroup=redifArgumentOrderPostal contained |
| 198 | syntax match redifFieldOrderURL /^Order-URL:/ skipwhite skipempty nextgroup=redifArgumentOrderURL contained |
| 199 | syntax match redifFieldPages /^Pages:/ skipwhite skipempty nextgroup=redifArgumentPages contained |
| 200 | syntax match redifFieldPaperHandle /^Paper-Handle:/ skipwhite skipempty nextgroup=redifArgumentPaperHandle contained |
| 201 | syntax match redifFieldPhone /^Phone:/ skipwhite skipempty nextgroup=redifArgumentPhone contained |
| 202 | syntax match redifFieldPostal /^Postal:/ skipwhite skipempty nextgroup=redifArgumentPostal contained |
| 203 | syntax match redifFieldPredecessor /^Predecessor:/ skipwhite skipempty nextgroup=redifArgumentPredecessor contained |
| 204 | syntax match redifFieldPrice /^Price:/ skipwhite skipempty nextgroup=redifArgumentPrice contained |
| 205 | syntax match redifFieldPrimaryDefunct /^Primary-Defunct:/ skipwhite skipempty nextgroup=redifArgumentPrimaryDefunct contained |
| 206 | syntax match redifFieldPrimaryEmail /^Primary-Email:/ skipwhite skipempty nextgroup=redifArgumentPrimaryEmail contained |
| 207 | syntax match redifFieldPrimaryFax /^Primary-Fax:/ skipwhite skipempty nextgroup=redifArgumentPrimaryFax contained |
| 208 | syntax match redifFieldPrimaryHomepage /^Primary-Homepage:/ skipwhite skipempty nextgroup=redifArgumentPrimaryHomepage contained |
| 209 | syntax match redifFieldPrimaryInstitution /^Primary-Institution:/ skipwhite skipempty nextgroup=redifArgumentPrimaryInstitution contained |
| 210 | syntax match redifFieldPrimaryLocation /^Primary-Location:/ skipwhite skipempty nextgroup=redifArgumentPrimaryLocation contained |
| 211 | syntax match redifFieldPrimaryName /^Primary-Name:/ skipwhite skipempty nextgroup=redifArgumentPrimaryName contained |
| 212 | syntax match redifFieldPrimaryNameEnglish /^Primary-Name-English:/ skipwhite skipempty nextgroup=redifArgumentPrimaryNameEnglish contained |
| 213 | syntax match redifFieldPrimaryPhone /^Primary-Phone:/ skipwhite skipempty nextgroup=redifArgumentPrimaryPhone contained |
| 214 | syntax match redifFieldPrimaryPostal /^Primary-Postal:/ skipwhite skipempty nextgroup=redifArgumentPrimaryPostal contained |
| 215 | syntax match redifFieldProgrammingLanguage /^Programming-Language:/ skipwhite skipempty nextgroup=redifArgumentProgrammingLanguage contained |
| 216 | syntax match redifFieldProviderEmail /^Provider-Email:/ skipwhite skipempty nextgroup=redifArgumentProviderEmail contained |
| 217 | syntax match redifFieldProviderFax /^Provider-Fax:/ skipwhite skipempty nextgroup=redifArgumentProviderFax contained |
| 218 | syntax match redifFieldProviderHomepage /^Provider-Homepage:/ skipwhite skipempty nextgroup=redifArgumentProviderHomepage contained |
| 219 | syntax match redifFieldProviderInstitution /^Provider-Institution:/ skipwhite skipempty nextgroup=redifArgumentProviderInstitution contained |
| 220 | syntax match redifFieldProviderLocation /^Provider-Location:/ skipwhite skipempty nextgroup=redifArgumentProviderLocation contained |
| 221 | syntax match redifFieldProviderName /^Provider-Name:/ skipwhite skipempty nextgroup=redifArgumentProviderName contained |
| 222 | syntax match redifFieldProviderNameEnglish /^Provider-Name-English:/ skipwhite skipempty nextgroup=redifArgumentProviderNameEnglish contained |
| 223 | syntax match redifFieldProviderPhone /^Provider-Phone:/ skipwhite skipempty nextgroup=redifArgumentProviderPhone contained |
| 224 | syntax match redifFieldProviderPostal /^Provider-Postal:/ skipwhite skipempty nextgroup=redifArgumentProviderPostal contained |
| 225 | syntax match redifFieldPublicationDate /^Publication-Date:/ skipwhite skipempty nextgroup=redifArgumentPublicationDate contained |
| 226 | syntax match redifFieldPublicationStatus /^Publication-Status:/ skipwhite skipempty nextgroup=redifArgumentPublicationStatus contained |
| 227 | syntax match redifFieldPublicationType /^Publication-Type:/ skipwhite skipempty nextgroup=redifArgumentPublicationType contained |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 228 | syntax match redifFieldQuaternaryEmail /^Quaternary-Email:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryEmail contained |
| 229 | syntax match redifFieldQuaternaryFax /^Quaternary-Fax:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryFax contained |
| 230 | syntax match redifFieldQuaternaryHomepage /^Quaternary-Homepage:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryHomepage contained |
| 231 | syntax match redifFieldQuaternaryInstitution /^Quaternary-Institution:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryInstitution contained |
| 232 | syntax match redifFieldQuaternaryLocation /^Quaternary-Location:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryLocation contained |
| 233 | syntax match redifFieldQuaternaryName /^Quaternary-Name:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryName contained |
| 234 | syntax match redifFieldQuaternaryNameEnglish /^Quaternary-Name-English:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryNameEnglish contained |
| 235 | syntax match redifFieldQuaternaryPhone /^Quaternary-Phone:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryPhone contained |
| 236 | syntax match redifFieldQuaternaryPostal /^Quaternary-Postal:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryPostal contained |
| 237 | syntax match redifFieldRegisteredDate /^Registered-Date:/ skipwhite skipempty nextgroup=redifArgumentRegisteredDate contained |
| 238 | syntax match redifFieldRequires /^Requires:/ skipwhite skipempty nextgroup=redifArgumentRequires contained |
| 239 | syntax match redifFieldRestriction /^Restriction:/ skipwhite skipempty nextgroup=redifArgumentRestriction contained |
| 240 | syntax match redifFieldRevisionDate /^Revision-Date:/ skipwhite skipempty nextgroup=redifArgumentRevisionDate contained |
| 241 | syntax match redifFieldSecondaryDefunct /^Secondary-Defunct:/ skipwhite skipempty nextgroup=redifArgumentSecondaryDefunct contained |
| 242 | syntax match redifFieldSecondaryEmail /^Secondary-Email:/ skipwhite skipempty nextgroup=redifArgumentSecondaryEmail contained |
| 243 | syntax match redifFieldSecondaryFax /^Secondary-Fax:/ skipwhite skipempty nextgroup=redifArgumentSecondaryFax contained |
| 244 | syntax match redifFieldSecondaryHomepage /^Secondary-Homepage:/ skipwhite skipempty nextgroup=redifArgumentSecondaryHomepage contained |
| 245 | syntax match redifFieldSecondaryInstitution /^Secondary-Institution:/ skipwhite skipempty nextgroup=redifArgumentSecondaryInstitution contained |
| 246 | syntax match redifFieldSecondaryLocation /^Secondary-Location:/ skipwhite skipempty nextgroup=redifArgumentSecondaryLocation contained |
| 247 | syntax match redifFieldSecondaryName /^Secondary-Name:/ skipwhite skipempty nextgroup=redifArgumentSecondaryName contained |
| 248 | syntax match redifFieldSecondaryNameEnglish /^Secondary-Name-English:/ skipwhite skipempty nextgroup=redifArgumentSecondaryNameEnglish contained |
| 249 | syntax match redifFieldSecondaryPhone /^Secondary-Phone:/ skipwhite skipempty nextgroup=redifArgumentSecondaryPhone contained |
| 250 | syntax match redifFieldSecondaryPostal /^Secondary-Postal:/ skipwhite skipempty nextgroup=redifArgumentSecondaryPostal contained |
| 251 | syntax match redifFieldSeries /^Series:/ skipwhite skipempty nextgroup=redifArgumentSeries contained |
| 252 | syntax match redifFieldShortId /^Short-Id:/ skipwhite skipempty nextgroup=redifArgumentShortId contained |
| 253 | syntax match redifFieldSize /^Size:/ skipwhite skipempty nextgroup=redifArgumentSize contained |
| 254 | syntax match redifFieldSoftwareHandle /^Software-Handle:/ skipwhite skipempty nextgroup=redifArgumentSoftwareHandle contained |
| 255 | syntax match redifFieldTemplateType /^Template-Type:/ skipwhite skipempty nextgroup=redifArgumentTemplateType contained |
| 256 | syntax match redifFieldTertiaryDefunct /^Tertiary-Defunct:/ skipwhite skipempty nextgroup=redifArgumentTertiaryDefunct contained |
| 257 | syntax match redifFieldTertiaryEmail /^Tertiary-Email:/ skipwhite skipempty nextgroup=redifArgumentTertiaryEmail contained |
| 258 | syntax match redifFieldTertiaryFax /^Tertiary-Fax:/ skipwhite skipempty nextgroup=redifArgumentTertiaryFax contained |
| 259 | syntax match redifFieldTertiaryHomepage /^Tertiary-Homepage:/ skipwhite skipempty nextgroup=redifArgumentTertiaryHomepage contained |
| 260 | syntax match redifFieldTertiaryInstitution /^Tertiary-Institution:/ skipwhite skipempty nextgroup=redifArgumentTertiaryInstitution contained |
| 261 | syntax match redifFieldTertiaryLocation /^Tertiary-Location:/ skipwhite skipempty nextgroup=redifArgumentTertiaryLocation contained |
| 262 | syntax match redifFieldTertiaryName /^Tertiary-Name:/ skipwhite skipempty nextgroup=redifArgumentTertiaryName contained |
| 263 | syntax match redifFieldTertiaryNameEnglish /^Tertiary-Name-English:/ skipwhite skipempty nextgroup=redifArgumentTertiaryNameEnglish contained |
| 264 | syntax match redifFieldTertiaryPhone /^Tertiary-Phone:/ skipwhite skipempty nextgroup=redifArgumentTertiaryPhone contained |
| 265 | syntax match redifFieldTertiaryPostal /^Tertiary-Postal:/ skipwhite skipempty nextgroup=redifArgumentTertiaryPostal contained |
| 266 | syntax match redifFieldTitle /^Title:/ skipwhite skipempty nextgroup=redifArgumentTitle contained |
| 267 | syntax match redifFieldType /^Type:/ skipwhite skipempty nextgroup=redifArgumentType contained |
| 268 | syntax match redifFieldURL /^URL:/ skipwhite skipempty nextgroup=redifArgumentURL contained |
| 269 | syntax match redifFieldVersion /^Version:/ skipwhite skipempty nextgroup=redifArgumentVersion contained |
| 270 | syntax match redifFieldVolume /^Volume:/ skipwhite skipempty nextgroup=redifArgumentVolume contained |
| 271 | syntax match redifFieldWorkplaceEmail /^Workplace-Email:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceEmail contained |
| 272 | syntax match redifFieldWorkplaceFax /^Workplace-Fax:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceFax contained |
| 273 | syntax match redifFieldWorkplaceHomepage /^Workplace-Homepage:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceHomepage contained |
| 274 | syntax match redifFieldWorkplaceInstitution /^Workplace-Institution:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceInstitution contained |
| 275 | syntax match redifFieldWorkplaceLocation /^Workplace-Location:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceLocation contained |
| 276 | syntax match redifFieldWorkplaceName /^Workplace-Name:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceName contained |
| 277 | syntax match redifFieldWorkplaceNameEnglish /^Workplace-Name-English:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceNameEnglish contained |
| 278 | syntax match redifFieldWorkplaceOrganization /^Workplace-Organization:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceOrganization contained |
| 279 | syntax match redifFieldWorkplacePhone /^Workplace-Phone:/ skipwhite skipempty nextgroup=redifArgumentWorkplacePhone contained |
| 280 | syntax match redifFieldWorkplacePostal /^Workplace-Postal:/ skipwhite skipempty nextgroup=redifArgumentWorkplacePostal contained |
| 281 | syntax match redifFieldYear /^Year:/ skipwhite skipempty nextgroup=redifArgumentYear contained |
| 282 | |
| 283 | highlight def link redifFieldAbstract redifField |
| 284 | highlight def link redifFieldArticleHandle redifField |
| 285 | highlight def link redifFieldAuthorArticle redifField |
| 286 | highlight def link redifFieldAuthorBook redifField |
| 287 | highlight def link redifFieldAuthorChapter redifField |
| 288 | highlight def link redifFieldAuthorEmail redifField |
| 289 | highlight def link redifFieldAuthorFax redifField |
| 290 | highlight def link redifFieldAuthorHomepage redifField |
| 291 | highlight def link redifFieldAuthorName redifField |
| 292 | highlight def link redifFieldAuthorNameFirst redifField |
| 293 | highlight def link redifFieldAuthorNameLast redifField |
| 294 | highlight def link redifFieldAuthorPaper redifField |
| 295 | highlight def link redifFieldAuthorPerson redifField |
| 296 | highlight def link redifFieldAuthorPhone redifField |
| 297 | highlight def link redifFieldAuthorPostal redifField |
| 298 | highlight def link redifFieldAuthorSoftware redifField |
| 299 | highlight def link redifFieldAuthorWorkplaceEmail redifField |
| 300 | highlight def link redifFieldAuthorWorkplaceFax redifField |
| 301 | highlight def link redifFieldAuthorWorkplaceHomepage redifField |
| 302 | highlight def link redifFieldAuthorWorkplaceInstitution redifField |
| 303 | highlight def link redifFieldAuthorWorkplaceLocation redifField |
| 304 | highlight def link redifFieldAuthorWorkplaceName redifField |
| 305 | highlight def link redifFieldAuthorWorkplaceNameEnglish redifField |
| 306 | highlight def link redifFieldAuthorWorkplacePhone redifField |
| 307 | highlight def link redifFieldAuthorWorkplacePostal redifField |
| 308 | highlight def link redifFieldAvailability redifField |
| 309 | highlight def link redifFieldBookHandle redifField |
| 310 | highlight def link redifFieldBookTitle redifField |
| 311 | highlight def link redifFieldChapterHandle redifField |
| 312 | highlight def link redifFieldChapter redifField |
| 313 | highlight def link redifFieldClassificationJEL redifField |
| 314 | highlight def link redifFieldContactEmail redifField |
| 315 | highlight def link redifFieldCreationDate redifField |
| 316 | highlight def link redifFieldDescription redifField |
| 317 | highlight def link redifFieldEdition redifField |
| 318 | highlight def link redifFieldEditorBook redifField |
| 319 | highlight def link redifFieldEditorEmail redifField |
| 320 | highlight def link redifFieldEditorFax redifField |
| 321 | highlight def link redifFieldEditorHomepage redifField |
| 322 | highlight def link redifFieldEditorName redifField |
| 323 | highlight def link redifFieldEditorNameFirst redifField |
| 324 | highlight def link redifFieldEditorNameLast redifField |
| 325 | highlight def link redifFieldEditorPerson redifField |
| 326 | highlight def link redifFieldEditorPhone redifField |
| 327 | highlight def link redifFieldEditorPostal redifField |
| 328 | highlight def link redifFieldEditorSeries redifField |
| 329 | highlight def link redifFieldEditorWorkplaceEmail redifField |
| 330 | highlight def link redifFieldEditorWorkplaceFax redifField |
| 331 | highlight def link redifFieldEditorWorkplaceHomepage redifField |
| 332 | highlight def link redifFieldEditorWorkplaceInstitution redifField |
| 333 | highlight def link redifFieldEditorWorkplaceLocation redifField |
| 334 | highlight def link redifFieldEditorWorkplaceName redifField |
| 335 | highlight def link redifFieldEditorWorkplaceNameEnglish redifField |
| 336 | highlight def link redifFieldEditorWorkplacePhone redifField |
| 337 | highlight def link redifFieldEditorWorkplacePostal redifField |
| 338 | highlight def link redifFieldEmail redifField |
| 339 | highlight def link redifFieldFax redifField |
| 340 | highlight def link redifFieldFileFormat redifField |
| 341 | highlight def link redifFieldFileFunction redifField |
| 342 | highlight def link redifFieldFileRestriction redifField |
| 343 | highlight def link redifFieldFileSize redifField |
| 344 | highlight def link redifFieldFileURL redifField |
| 345 | highlight def link redifFieldFollowup redifField |
| 346 | highlight def link redifFieldHandleOfArchive redifField |
| 347 | highlight def link redifFieldHandleOfInstitution redifField |
| 348 | highlight def link redifFieldHandleOfPerson redifField |
| 349 | highlight def link redifFieldHandleOfSeries redifField |
| 350 | highlight def link redifFieldHandleOfWork redifField |
| 351 | highlight def link redifFieldHasChapter redifField |
| 352 | highlight def link redifFieldHomepage redifField |
| 353 | highlight def link redifFieldInBook redifField |
| 354 | highlight def link redifFieldISBN redifField |
| 355 | highlight def link redifFieldISSN redifField |
| 356 | highlight def link redifFieldIssue redifField |
| 357 | highlight def link redifFieldJournal redifField |
| 358 | highlight def link redifFieldKeywords redifField |
| 359 | highlight def link redifFieldKeywords redifField |
| 360 | highlight def link redifFieldLanguage redifField |
| 361 | highlight def link redifFieldLastLoginDate redifField |
| 362 | highlight def link redifFieldLength redifField |
| 363 | highlight def link redifFieldMaintainerEmail redifField |
| 364 | highlight def link redifFieldMaintainerFax redifField |
| 365 | highlight def link redifFieldMaintainerName redifField |
| 366 | highlight def link redifFieldMaintainerPhone redifField |
| 367 | highlight def link redifFieldMonth redifField |
| 368 | highlight def link redifFieldNameASCII redifField |
| 369 | highlight def link redifFieldNameFirst redifField |
| 370 | highlight def link redifFieldNameFull redifField |
| 371 | highlight def link redifFieldNameLast redifField |
| 372 | highlight def link redifFieldNameMiddle redifField |
| 373 | highlight def link redifFieldNamePrefix redifField |
| 374 | highlight def link redifFieldNameSuffix redifField |
| 375 | highlight def link redifFieldName redifField |
| 376 | highlight def link redifFieldNote redifField |
| 377 | highlight def link redifFieldNotification redifField |
| 378 | highlight def link redifFieldNumber redifField |
| 379 | highlight def link redifFieldOrderEmail redifField |
| 380 | highlight def link redifFieldOrderHomepage redifField |
| 381 | highlight def link redifFieldOrderPostal redifField |
| 382 | highlight def link redifFieldOrderURL redifField |
| 383 | highlight def link redifFieldPages redifField |
| 384 | highlight def link redifFieldPaperHandle redifField |
| 385 | highlight def link redifFieldPhone redifField |
| 386 | highlight def link redifFieldPostal redifField |
| 387 | highlight def link redifFieldPredecessor redifField |
| 388 | highlight def link redifFieldPrice redifField |
| 389 | highlight def link redifFieldPrimaryDefunct redifField |
| 390 | highlight def link redifFieldPrimaryEmail redifField |
| 391 | highlight def link redifFieldPrimaryFax redifField |
| 392 | highlight def link redifFieldPrimaryHomepage redifField |
| 393 | highlight def link redifFieldPrimaryInstitution redifField |
| 394 | highlight def link redifFieldPrimaryLocation redifField |
| 395 | highlight def link redifFieldPrimaryName redifField |
| 396 | highlight def link redifFieldPrimaryNameEnglish redifField |
| 397 | highlight def link redifFieldPrimaryPhone redifField |
| 398 | highlight def link redifFieldPrimaryPostal redifField |
| 399 | highlight def link redifFieldProgrammingLanguage redifField |
| 400 | highlight def link redifFieldProviderEmail redifField |
| 401 | highlight def link redifFieldProviderFax redifField |
| 402 | highlight def link redifFieldProviderHomepage redifField |
| 403 | highlight def link redifFieldProviderInstitution redifField |
| 404 | highlight def link redifFieldProviderLocation redifField |
| 405 | highlight def link redifFieldProviderName redifField |
| 406 | highlight def link redifFieldProviderNameEnglish redifField |
| 407 | highlight def link redifFieldProviderPhone redifField |
| 408 | highlight def link redifFieldProviderPostal redifField |
| 409 | highlight def link redifFieldPublicationDate redifField |
| 410 | highlight def link redifFieldPublicationStatus redifField |
| 411 | highlight def link redifFieldPublicationType redifField |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 412 | highlight def link redifFieldQuaternaryEmail redifField |
| 413 | highlight def link redifFieldQuaternaryFax redifField |
| 414 | highlight def link redifFieldQuaternaryHomepage redifField |
| 415 | highlight def link redifFieldQuaternaryInstitution redifField |
| 416 | highlight def link redifFieldQuaternaryLocation redifField |
| 417 | highlight def link redifFieldQuaternaryName redifField |
| 418 | highlight def link redifFieldQuaternaryNameEnglish redifField |
| 419 | highlight def link redifFieldQuaternaryPhone redifField |
| 420 | highlight def link redifFieldQuaternaryPostal redifField |
| 421 | highlight def link redifFieldRegisteredDate redifField |
| 422 | highlight def link redifFieldRequires redifField |
| 423 | highlight def link redifFieldRestriction redifField |
| 424 | highlight def link redifFieldRevisionDate redifField |
| 425 | highlight def link redifFieldSecondaryDefunct redifField |
| 426 | highlight def link redifFieldSecondaryEmail redifField |
| 427 | highlight def link redifFieldSecondaryFax redifField |
| 428 | highlight def link redifFieldSecondaryHomepage redifField |
| 429 | highlight def link redifFieldSecondaryInstitution redifField |
| 430 | highlight def link redifFieldSecondaryLocation redifField |
| 431 | highlight def link redifFieldSecondaryName redifField |
| 432 | highlight def link redifFieldSecondaryNameEnglish redifField |
| 433 | highlight def link redifFieldSecondaryPhone redifField |
| 434 | highlight def link redifFieldSecondaryPostal redifField |
| 435 | highlight def link redifFieldSeries redifField |
| 436 | highlight def link redifFieldShortId redifField |
| 437 | highlight def link redifFieldSize redifField |
| 438 | highlight def link redifFieldSoftwareHandle redifField |
| 439 | highlight def link redifFieldTemplateType redifField |
| 440 | highlight def link redifFieldTertiaryDefunct redifField |
| 441 | highlight def link redifFieldTertiaryEmail redifField |
| 442 | highlight def link redifFieldTertiaryFax redifField |
| 443 | highlight def link redifFieldTertiaryHomepage redifField |
| 444 | highlight def link redifFieldTertiaryInstitution redifField |
| 445 | highlight def link redifFieldTertiaryLocation redifField |
| 446 | highlight def link redifFieldTertiaryName redifField |
| 447 | highlight def link redifFieldTertiaryNameEnglish redifField |
| 448 | highlight def link redifFieldTertiaryPhone redifField |
| 449 | highlight def link redifFieldTertiaryPostal redifField |
| 450 | highlight def link redifFieldTitle redifField |
| 451 | highlight def link redifFieldTitle redifField |
| 452 | highlight def link redifFieldType redifField |
| 453 | highlight def link redifFieldURL redifField |
| 454 | highlight def link redifFieldVersion redifField |
| 455 | highlight def link redifFieldVolume redifField |
| 456 | highlight def link redifFieldWorkplaceEmail redifField |
| 457 | highlight def link redifFieldWorkplaceFax redifField |
| 458 | highlight def link redifFieldWorkplaceHomepage redifField |
| 459 | highlight def link redifFieldWorkplaceInstitution redifField |
| 460 | highlight def link redifFieldWorkplaceLocation redifField |
| 461 | highlight def link redifFieldWorkplaceName redifField |
| 462 | highlight def link redifFieldWorkplaceNameEnglish redifField |
| 463 | highlight def link redifFieldWorkplaceOrganization redifField |
| 464 | highlight def link redifFieldWorkplacePhone redifField |
| 465 | highlight def link redifFieldWorkplacePostal redifField |
| 466 | highlight def link redifFieldYear redifField |
| 467 | |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 468 | " Deprecated |
| 469 | " same as Provider-* |
| 470 | " nextgroup=redifArgumentProvider* |
| 471 | syntax match redifFieldPublisherEmail /^Publisher-Email:/ skipwhite skipempty nextgroup=redifArgumentProviderEmail contained |
| 472 | syntax match redifFieldPublisherFax /^Publisher-Fax:/ skipwhite skipempty nextgroup=redifArgumentProviderFax contained |
| 473 | syntax match redifFieldPublisherHomepage /^Publisher-Homepage:/ skipwhite skipempty nextgroup=redifArgumentProviderHomepage contained |
| 474 | syntax match redifFieldPublisherInstitution /^Publisher-Institution:/ skipwhite skipempty nextgroup=redifArgumentProviderInstitution contained |
| 475 | syntax match redifFieldPublisherLocation /^Publisher-Location:/ skipwhite skipempty nextgroup=redifArgumentProviderLocation contained |
| 476 | syntax match redifFieldPublisherName /^Publisher-Name:/ skipwhite skipempty nextgroup=redifArgumentProviderName contained |
| 477 | syntax match redifFieldPublisherNameEnglish /^Publisher-Name-English:/ skipwhite skipempty nextgroup=redifArgumentProviderNameEnglish contained |
| 478 | syntax match redifFieldPublisherPhone /^Publisher-Phone:/ skipwhite skipempty nextgroup=redifArgumentProviderPhone contained |
| 479 | syntax match redifFieldPublisherPostal /^Publisher-Postal:/ skipwhite skipempty nextgroup=redifArgumentProviderPostal contained |
| 480 | |
| 481 | highlight def link redifFieldPublisherEmail redifFieldDeprecated |
| 482 | highlight def link redifFieldPublisherFax redifFieldDeprecated |
| 483 | highlight def link redifFieldPublisherHomepage redifFieldDeprecated |
| 484 | highlight def link redifFieldPublisherInstitution redifFieldDeprecated |
| 485 | highlight def link redifFieldPublisherLocation redifFieldDeprecated |
| 486 | highlight def link redifFieldPublisherName redifFieldDeprecated |
| 487 | highlight def link redifFieldPublisherNameEnglish redifFieldDeprecated |
| 488 | highlight def link redifFieldPublisherPhone redifFieldDeprecated |
| 489 | highlight def link redifFieldPublisherPostal redifFieldDeprecated |
| 490 | |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 491 | " Standard arguments |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 492 | " By default, they contain all the argument until another field is started: |
| 493 | " start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 |
| 494 | " For arguments that must not span more than one line, use a match: |
| 495 | " /\%(^\S\{-}:\)\@!\S.*/ |
| 496 | " AND ADD "display" |
| 497 | " This is faster. |
| 498 | " |
| 499 | " Those arguments are not highlighted so far. They are here for future |
| 500 | " extensions. |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 501 | " TODO Find more RegEx for these arguments |
| 502 | " TODO Fax, Phone |
| 503 | " TODO URL, Homepage |
| 504 | " TODO Keywords |
| 505 | " TODO Classification-JEL |
| 506 | " TODO Short-Id, Author-Person, Editor-Person |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 507 | " |
| 508 | " Arguments that may span several lines: |
| 509 | syntax region redifArgumentAuthorWorkplaceLocation start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 510 | syntax region redifArgumentAuthorWorkplacePostal start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 511 | syntax region redifArgumentEditorPostal start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 512 | syntax region redifArgumentEditorWorkplacePostal start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 513 | syntax region redifArgumentFileFunction start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 514 | syntax region redifArgumentIssue start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 515 | syntax region redifArgumentJournal start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 516 | syntax region redifArgumentOrderPostal start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 517 | syntax region redifArgumentPostal start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 518 | syntax region redifArgumentPrice start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 519 | syntax region redifArgumentPrimaryLocation start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 520 | syntax region redifArgumentPrimaryPostal start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 521 | syntax region redifArgumentProviderLocation start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 522 | syntax region redifArgumentProviderPostal start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 523 | syntax region redifArgumentQuaternaryLocation start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 524 | syntax region redifArgumentQuaternaryPostal start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 525 | syntax region redifArgumentRequires start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 526 | syntax region redifArgumentSecondaryLocation start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 527 | syntax region redifArgumentSecondaryPostal start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 528 | syntax region redifArgumentSize start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 529 | syntax region redifArgumentTertiaryLocation start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 530 | syntax region redifArgumentTertiaryPostal start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 531 | syntax region redifArgumentVersion start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 532 | syntax region redifArgumentWorkplaceLocation start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 533 | syntax region redifArgumentWorkplacePhone start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 534 | syntax region redifArgumentWorkplacePostal start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 535 | |
| 536 | " Arguments that may not span several lines: |
| 537 | " If you are sure that these arguments cannot span several lines, change |
| 538 | " them to a match: |
| 539 | " /\%(^\S\{-}:\)\@!\S.*/ |
| 540 | " AND ADD "display" after "contained" |
| 541 | " You can use this command on each line that you want to change: |
| 542 | " :s+\Vregion \(\w\+\) start=/\\%(^\\S\\{-}:\\)\\@!\\S/ end=/^\\S\\{-}:/me=s-1 contained+match \1 /\\%(^\\S\\{-}:\\)\\@!\\S.*/ contained display |
| 543 | syntax region redifArgumentAuthorFax start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 544 | syntax region redifArgumentAuthorHomepage start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 545 | syntax region redifArgumentAuthorName start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 546 | syntax region redifArgumentAuthorNameFirst start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 547 | syntax region redifArgumentAuthorNameLast start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 548 | syntax region redifArgumentAuthorPerson start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 549 | syntax region redifArgumentAuthorPhone start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 550 | syntax region redifArgumentAuthorPostal start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 551 | syntax region redifArgumentAuthorWorkplaceFax start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 552 | syntax region redifArgumentAuthorWorkplaceHomepage start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 553 | syntax region redifArgumentAuthorWorkplaceName start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 554 | syntax region redifArgumentAuthorWorkplaceNameEnglish start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 555 | syntax region redifArgumentAuthorWorkplacePhone start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 556 | syntax region redifArgumentEditorFax start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 557 | syntax region redifArgumentEditorHomepage start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 558 | syntax region redifArgumentEditorName start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 559 | syntax region redifArgumentEditorNameFirst start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 560 | syntax region redifArgumentEditorNameLast start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 561 | syntax region redifArgumentEditorPerson start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 562 | syntax region redifArgumentEditorPhone start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 563 | syntax region redifArgumentEditorWorkplaceFax start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 564 | syntax region redifArgumentEditorWorkplaceHomepage start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 565 | syntax region redifArgumentEditorWorkplaceLocation start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 566 | syntax region redifArgumentEditorWorkplaceName start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 567 | syntax region redifArgumentEditorWorkplaceNameEnglish start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 568 | syntax region redifArgumentEditorWorkplacePhone start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 569 | syntax region redifArgumentFax start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 570 | syntax region redifArgumentFileURL start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 571 | syntax region redifArgumentHomepage start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 572 | syntax region redifArgumentMaintainerFax start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 573 | syntax region redifArgumentMaintainerName start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 574 | syntax region redifArgumentMaintainerPhone start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 575 | syntax region redifArgumentNameFirst start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 576 | syntax region redifArgumentNameFull start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 577 | syntax region redifArgumentNameLast start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 578 | syntax region redifArgumentNameMiddle start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 579 | syntax region redifArgumentNamePrefix start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 580 | syntax region redifArgumentNameSuffix start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 581 | syntax region redifArgumentName start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
Bram Moolenaar | ff03419 | 2013-04-24 18:51:19 +0200 | [diff] [blame] | 582 | syntax region redifArgumentNumber start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 583 | syntax region redifArgumentOrderHomepage start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 584 | syntax region redifArgumentOrderURL start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 585 | syntax region redifArgumentPhone start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 586 | syntax region redifArgumentPrimaryFax start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 587 | syntax region redifArgumentPrimaryHomepage start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 588 | syntax region redifArgumentPrimaryName start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 589 | syntax region redifArgumentPrimaryNameEnglish start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 590 | syntax region redifArgumentPrimaryPhone start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 591 | syntax region redifArgumentProviderFax start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 592 | syntax region redifArgumentProviderHomepage start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 593 | syntax region redifArgumentProviderName start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 594 | syntax region redifArgumentProviderNameEnglish start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 595 | syntax region redifArgumentProviderPhone start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 596 | syntax region redifArgumentQuaternaryFax start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 597 | syntax region redifArgumentQuaternaryHomepage start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 598 | syntax region redifArgumentQuaternaryName start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 599 | syntax region redifArgumentQuaternaryNameEnglish start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 600 | syntax region redifArgumentQuaternaryPhone start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 601 | syntax region redifArgumentSecondaryFax start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 602 | syntax region redifArgumentSecondaryHomepage start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 603 | syntax region redifArgumentSecondaryName start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 604 | syntax region redifArgumentSecondaryNameEnglish start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 605 | syntax region redifArgumentSecondaryPhone start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 606 | syntax region redifArgumentSeries start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 607 | syntax region redifArgumentShortId start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 608 | syntax region redifArgumentTertiaryFax start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 609 | syntax region redifArgumentTertiaryHomepage start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 610 | syntax region redifArgumentTertiaryName start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 611 | syntax region redifArgumentTertiaryNameEnglish start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 612 | syntax region redifArgumentTertiaryPhone start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 613 | syntax region redifArgumentURL start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 614 | syntax region redifArgumentWorkplaceFax start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 615 | syntax region redifArgumentWorkplaceHomepage start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 616 | syntax region redifArgumentWorkplaceName start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 617 | syntax region redifArgumentWorkplaceNameEnglish start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
| 618 | syntax region redifArgumentWorkplaceOrganization start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contained |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 619 | |
| 620 | " Special arguments |
| 621 | " Those arguments require special values |
| 622 | " TODO Improve some RegEx |
| 623 | " TODO Improve Emails |
| 624 | " TODO Improve ISBN |
| 625 | " TODO Improve ISSN |
| 626 | " TODO Improve spell check (add words from economics. |
| 627 | " expl=macroeconometrics, Schumpeterian, IS-LM, etc.) |
| 628 | " |
| 629 | " Template-Type |
| 630 | syntax match redifArgumentTemplateType /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectTemplateType contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 631 | syntax match redifCorrectTemplateType /ReDIF-\%(Paper\|Article\|Chapter\|Book\|Software\|Archive\|Series\|Institution\|Person\)/ nextgroup=redifTemplateVersionNumberContainer contained display |
| 632 | syntax match redifTemplateVersionNumberContainer /.\+/ contains=redifTemplateVersionNumber contained display |
| 633 | syntax match redifTemplateVersionNumber / \d\+\.\d\+/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 634 | |
| 635 | highlight def link redifArgumentTemplateType redifError |
| 636 | highlight def link redifCorrectTemplateType Constant |
| 637 | highlight def link redifTemplateVersionNumber Number |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 638 | highlight def link redifTemplateVersionNumberContainer redifError |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 639 | |
| 640 | " Handles: |
| 641 | " |
| 642 | " Handles of Works: |
| 643 | syntax match redifArgumentHandleOfWork /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 644 | syntax match redifArgumentAuthorArticle /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 645 | syntax match redifArgumentAuthorBook /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 646 | syntax match redifArgumentAuthorChapter /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 647 | syntax match redifArgumentAuthorPaper /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 648 | syntax match redifArgumentAuthorSoftware /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 649 | syntax match redifArgumentEditorBook /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 650 | syntax match redifArgumentEditorSeries /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 651 | syntax match redifArgumentInBook /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 652 | syntax match redifArgumentHasChapter /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 653 | syntax match redifArgumentArticleHandle /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 654 | syntax match redifArgumentBookHandle /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 655 | syntax match redifArgumentChapterHandle /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 656 | syntax match redifArgumentPaperHandle /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
| 657 | syntax match redifArgumentSoftwareHandle /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 658 | syntax match redifCorrectHandleOfWork /RePEc:\a\a\a:\%(_\@!\w\)\{6}:\S\+/ contains=redifForbiddenCharactersInHandle,redifBestPracticeInHandle nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 659 | " TODO Are those characters really forbidden??? |
| 660 | syntax match redifForbiddenCharactersInHandle /[\/*?"<>|]/ contained display |
| 661 | syntax match redifBestPracticeInHandle /\<\%([vi]:[1-9]\d*\|y:[1-9]\d\{3}\|p:[1-9]\d*-[1-9]\d*\|i:\%(jan\|feb\|mar\|apr\|may\|jun\|jul\|aug\|sep\|oct\|nov\|dec\|spr\|sum\|aut\|win\|spe\|Q[1-4]\|\d\d-\d\d\)\|Q:[1-4]\)\>/ contained display |
| 662 | |
| 663 | highlight def link redifArgumentHandleOfWork redifError |
| 664 | highlight def link redifArgumentAuthorArticle redifError |
| 665 | highlight def link redifArgumentAuthorBook redifError |
| 666 | highlight def link redifArgumentAuthorChapter redifError |
| 667 | highlight def link redifArgumentAuthorPaper redifError |
| 668 | highlight def link redifArgumentAuthorSoftware redifError |
| 669 | highlight def link redifArgumentEditorBook redifError |
| 670 | highlight def link redifArgumentEditorSeries redifError |
| 671 | highlight def link redifArgumentInBook redifError |
| 672 | highlight def link redifArgumentHasChapter redifError |
| 673 | highlight def link redifArgumentArticleHandle redifError |
| 674 | highlight def link redifArgumentBookHandle redifError |
| 675 | highlight def link redifArgumentChapterHandle redifError |
| 676 | highlight def link redifArgumentPaperHandle redifError |
| 677 | highlight def link redifArgumentSoftwareHandle redifError |
| 678 | highlight def link redifForbiddenCharactersInHandle redifError |
| 679 | highlight def link redifBestPracticeInHandle redifSpecial |
| 680 | |
| 681 | " Handles of Series: |
| 682 | syntax match redifArgumentHandleOfSeries /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfSeries contained display |
| 683 | syntax match redifArgumentFollowup /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfSeries contained display |
| 684 | syntax match redifArgumentPredecessor /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfSeries contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 685 | syntax match redifCorrectHandleOfSeries /RePEc:\a\a\a:\%(_\@!\w\)\{6}/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 686 | |
| 687 | highlight def link redifArgumentHandleOfSeries redifError |
| 688 | highlight def link redifArgumentFollowup redifError |
| 689 | highlight def link redifArgumentPredecessor redifError |
| 690 | |
| 691 | " Handles of Archives: |
| 692 | syntax match redifArgumentHandleOfArchive /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfArchive contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 693 | syntax match redifCorrectHandleOfArchive /RePEc:\a\a\a/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 694 | |
| 695 | highlight def link redifArgumentHandleOfArchive redifError |
| 696 | |
| 697 | " Handles of Person: |
| 698 | syntax match redifArgumentHandleOfPerson /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfPerson contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 699 | syntax match redifCorrectHandleOfPerson /\%(\%(:\@!\S\)\{-}:\)\{2}[1-9]\d\{3}\%(-02\%(-[12]\d\|-0[1-9]\)\|-\%(0[469]\|11\)\%(-30\|-[12]\d\|-0[1-9]\)\|-\%(0[13578]\|1[02]\)\%(-3[01]\|-[12]\d\|-0[1-9]\)\):\S\+/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 700 | |
| 701 | highlight def link redifArgumentHandleOfPerson redifError |
| 702 | |
| 703 | " Handles of Institution: |
| 704 | syntax match redifArgumentAuthorWorkplaceInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display |
| 705 | syntax match redifArgumentEditorWorkplaceInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display |
| 706 | syntax match redifArgumentPrimaryInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display |
| 707 | syntax match redifArgumentProviderInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display |
| 708 | syntax match redifArgumentPublisherInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display |
| 709 | syntax match redifArgumentQuaternaryInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display |
| 710 | syntax match redifArgumentSecondaryInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display |
| 711 | syntax match redifArgumentTertiaryInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display |
| 712 | syntax match redifArgumentWorkplaceInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display |
| 713 | syntax match redifArgumentHandleOfInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display |
| 714 | syntax match redifArgumentPrimaryDefunct /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display |
| 715 | syntax match redifArgumentSecondaryDefunct /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display |
| 716 | syntax match redifArgumentTertiaryDefunct /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display |
| 717 | " TODO Are digits authorized? Apparently not. |
| 718 | " Country codes: |
| 719 | " http://www.iso.org/iso/country_codes/iso_3166_code_lists/country_names_and_code_elements.htm |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 720 | syntax match redifCorrectHandleOfInstitution /RePEc:\a\a\a:\a\{5}\(ea\|af\|ax\|al\|dz\|as\|ad\|ao\|ai\|aq\|ag\|ar\|am\|aw\|au\|at\|az\|bs\|bh\|bd\|bb\|by\|be\|bz\|bj\|bm\|bt\|bo\|bq\|ba\|bw\|bv\|br\|io\|bn\|bg\|bf\|bi\|kh\|cm\|ca\|cv\|ky\|cf\|td\|cl\|cn\|cx\|cc\|co\|km\|cg\|cd\|ck\|cr\|ci\|hr\|cu\|cw\|cy\|cz\|dk\|dj\|dm\|do\|ec\|eg\|sv\|gq\|er\|ee\|et\|fk\|fo\|fj\|fi\|fr\|gf\|pf\|tf\|ga\|gm\|ge\|de\|gh\|gi\|gr\|gl\|gd\|gp\|gu\|gt\|gg\|gn\|gw\|gy\|ht\|hm\|va\|hn\|hk\|hu\|is\|in\|id\|ir\|iq\|ie\|im\|il\|it\|jm\|jp\|je\|jo\|kz\|ke\|ki\|kp\|kr\|kw\|kg\|la\|lv\|lb\|ls\|lr\|ly\|li\|lt\|lu\|mo\|mk\|mg\|mw\|my\|mv\|ml\|mt\|mh\|mq\|mr\|mu\|yt\|mx\|fm\|md\|mc\|mn\|me\|ms\|ma\|mz\|mm\|na\|nr\|np\|nl\|nc\|nz\|ni\|ne\|ng\|nu\|nf\|mp\|no\|om\|pk\|pw\|ps\|pa\|pg\|py\|pe\|ph\|pn\|pl\|pt\|pr\|qa\|re\|ro\|ru\|rw\|bl\|sh\|kn\|lc\|mf\|pm\|vc\|ws\|sm\|st\|sa\|sn\|rs\|sc\|sl\|sg\|sx\|sk\|si\|sb\|so\|za\|gs\|ss\|es\|lk\|sd\|sr\|sj\|sz\|se\|ch\|sy\|tw\|tj\|tz\|th\|tl\|tg\|tk\|to\|tt\|tn\|tr\|tm\|tc\|tv\|ug\|ua\|ae\|gb\|us\|um\|uy\|uz\|vu\|ve\|vn\|vg\|vi\|wf\|eh\|ye\|zm\|zw\)/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 721 | |
| 722 | highlight def link redifArgumentHandleOfInstitution redifError |
| 723 | highlight def link redifArgumentPrimaryDefunct redifError |
| 724 | highlight def link redifArgumentSecondaryDefunct redifError |
| 725 | highlight def link redifArgumentTertiaryDefunct redifError |
| 726 | |
| 727 | " Emails: |
| 728 | syntax match redifArgumentAuthorEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 729 | syntax match redifArgumentAuthorWorkplaceEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 730 | syntax match redifArgumentContactEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 731 | syntax match redifArgumentEditorEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 732 | syntax match redifArgumentEditorWorkplaceEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 733 | syntax match redifArgumentEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 734 | syntax match redifArgumentMaintainerEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 735 | syntax match redifArgumentOrderEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 736 | syntax match redifArgumentPrimaryEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 737 | syntax match redifArgumentProviderEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 738 | syntax match redifArgumentPublisherEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 739 | syntax match redifArgumentQuaternaryEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 740 | syntax match redifArgumentSecondaryEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 741 | syntax match redifArgumentTertiaryEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
| 742 | syntax match redifArgumentWorkplaceEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 743 | syntax match redifCorrectEmail /\%(@\@!\S\)\+@\%(@\@!\S\)\+/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 744 | |
| 745 | highlight def link redifArgumentAuthorEmail redifError |
| 746 | highlight def link redifArgumentAuthorWorkplaceEmail redifError |
| 747 | highlight def link redifArgumentContactEmail redifError |
| 748 | highlight def link redifArgumentEditorEmail redifError |
| 749 | highlight def link redifArgumentEditorWorkplaceEmail redifError |
| 750 | highlight def link redifArgumentEmail redifError |
| 751 | highlight def link redifArgumentMaintainerEmail redifError |
| 752 | highlight def link redifArgumentOrderEmail redifError |
| 753 | highlight def link redifArgumentPrimaryEmail redifError |
| 754 | highlight def link redifArgumentProviderEmail redifError |
| 755 | highlight def link redifArgumentPublisherEmail redifError |
| 756 | highlight def link redifArgumentQuaternaryEmail redifError |
| 757 | highlight def link redifArgumentSecondaryEmail redifError |
| 758 | highlight def link redifArgumentTertiaryEmail redifError |
| 759 | highlight def link redifArgumentWorkplaceEmail redifError |
| 760 | |
| 761 | " Language |
| 762 | " Source: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes |
| 763 | syntax match redifArgumentLanguage /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectLanguage contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 764 | syntax match redifCorrectLanguage /\<\(aa\|ab\|af\|ak\|als\|am\|an\|ang\|ar\|arc\|as\|ast\|av\|ay\|az\|ba\|bar\|bat-smg\|bcl\|be\|be-x-old\|bg\|bh\|bi\|bm\|bn\|bo\|bpy\|br\|bs\|bug\|bxr\|ca\|ce\|ceb\|ch\|cho\|chr\|chy\|co\|cr\|cs\|csb\|cu\|cv\|cy\|da\|de\|diq\|dsb\|dv\|dz\|ee\|el\|en\|eo\|es\|et\|eu\|ext\|fa\|ff\|fi\|fiu-vro\|fj\|fo\|fr\|frp\|fur\|fy\|ga\|gd\|gil\|gl\|gn\|got\|gu\|gv\|ha\|haw\|he\|hi\|ho\|hr\|ht\|hu\|hy\|hz\|ia\|id\|ie\|ig\|ii\|ik\|ilo\|io\|is\|it\|iu\|ja\|jbo\|jv\|ka\|kg\|ki\|kj\|kk\|kl\|km\|kn\|khw\|ko\|kr\|ks\|ksh\|ku\|kv\|kw\|ky\|la\|lad\|lan\|lb\|lg\|li\|lij\|lmo\|ln\|lo\|lt\|lv\|map-bms\|mg\|mh\|mi\|mk\|ml\|mn\|mo\|mr\|ms\|mt\|mus\|my\|na\|nah\|nap\|nd\|nds\|nds-nl\|ne\|new\|ng\|nl\|nn\|no\|nr\|nso\|nrm\|nv\|ny\|oc\|oj\|om\|or\|os\|pa\|pag\|pam\|pap\|pdc\|pi\|pih\|pl\|pms\|ps\|pt\|qu\|rm\|rmy\|rn\|ro\|roa-rup\|ru\|rw\|sa\|sc\|scn\|sco\|sd\|se\|sg\|sh\|si\|simple\|sk\|sl\|sm\|sn\|so\|sq\|sr\|ss\|st\|su\|sv\|sw\|ta\|te\|tet\|tg\|th\|ti\|tk\|tl\|tlh\|tn\|to\|tpi\|tr\|ts\|tt\|tum\|tw\|ty\|udm\|ug\|uk\|ur\|uz\|ve\|vi\|vec\|vls\|vo\|wa\|war\|wo\|xal\|xh\|yi\|yo\|za\|zh\|zh-min-nan\|zh-yue\|zu\)\>/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 765 | |
| 766 | highlight def link redifArgumentLanguage redifError |
| 767 | highlight def link redifCorrectLanguage redifSpecial |
| 768 | |
| 769 | " Length |
| 770 | " Based on the example in the documentation. But apparently any field is |
| 771 | " possible |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 772 | syntax region redifArgumentLength start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contains=redifGoodLength contained |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 773 | syntax match redifGoodLength /1 page\|[1-9]\d*\%( pages\)\=/ contained display |
| 774 | |
| 775 | highlight def link redifGoodLength redifSpecial |
| 776 | |
| 777 | " Publication-Type |
| 778 | syntax match redifArgumentPublicationType /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectPublicationType contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 779 | syntax match redifCorrectPublicationType /\<\(journal article\|book\|book chapter\|working paper\|conference paper\|report\|other\)\>/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 780 | |
| 781 | highlight def link redifArgumentPublicationType redifError |
| 782 | highlight def link redifCorrectPublicationType redifSpecial |
| 783 | |
| 784 | " Publication-Status |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 785 | syntax region redifArgumentPublicationStatus start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contains=redifSpecialPublicationStatus contained |
| 786 | syntax match redifSpecialPublicationStatus /published\|forthcoming/ nextgroup=redifCorrectPublicationStatus contained display |
| 787 | syntax region redifCorrectPublicationStatus start=/./ end=/^\S\{-}:/me=s-1 contained |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 788 | |
| 789 | highlight def link redifArgumentPublicationStatus redifError |
| 790 | highlight def link redifSpecialPublicationStatus redifSpecial |
| 791 | |
| 792 | " Month |
| 793 | " TODO Are numbers also allowed? |
| 794 | syntax match redifArgumentMonth /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodMonth contained display |
Bram Moolenaar | ff03419 | 2013-04-24 18:51:19 +0200 | [diff] [blame] | 795 | syntax match redifGoodMonth /\<\(Jan\%(uary\)\=\|Feb\%(ruary\)\=\|Mar\%(ch\)\=\|Apr\%(il\)\=\|May\|June\=\|July\=\|Aug\%(ust\)\=\|Sep\%(tember\)\=\|Oct\%(ober\)\=\|Nov\%(ember\)\=\|Dec\%(ember\)\=\)\>/ contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 796 | |
| 797 | highlight def link redifGoodMonth redifSpecial |
| 798 | |
Bram Moolenaar | ff03419 | 2013-04-24 18:51:19 +0200 | [diff] [blame] | 799 | " Integers: Volume, Chapter |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 800 | syntax match redifArgumentVolume /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectInteger contained display |
| 801 | syntax match redifArgumentChapter /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectInteger contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 802 | syntax match redifCorrectInteger /[1-9]\d*/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 803 | |
| 804 | highlight def link redifArgumentVolume redifError |
| 805 | highlight def link redifArgumentChapter redifError |
| 806 | |
| 807 | " Year |
| 808 | syntax match redifArgumentYear /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectYear contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 809 | syntax match redifCorrectYear /[1-9]\d\{3}/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 810 | |
| 811 | highlight def link redifArgumentYear redifError |
| 812 | |
| 813 | " Edition |
| 814 | " Based on the example in the documentation. |
| 815 | syntax match redifArgumentEdition /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodEdition contained display |
Bram Moolenaar | ff03419 | 2013-04-24 18:51:19 +0200 | [diff] [blame] | 816 | syntax match redifGoodEdition /1st\|2nd\|3rd\|[4-9]th\|[1-9]\d*\%(1st\|2nd\|3rd\|[4-9]th\)\|[1-9]\d*/ contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 817 | |
| 818 | highlight def link redifGoodEdition redifSpecial |
| 819 | |
| 820 | " ISBN |
| 821 | syntax match redifArgumentISBN /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodISBN contained display |
Bram Moolenaar | ff03419 | 2013-04-24 18:51:19 +0200 | [diff] [blame] | 822 | syntax match redifGoodISBN /\d[0-9-]\{8,15}\d/ contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 823 | |
| 824 | highlight def link redifGoodISBN redifSpecial |
| 825 | |
| 826 | " ISSN |
| 827 | syntax match redifArgumentISSN /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodISSN contained display |
Bram Moolenaar | ff03419 | 2013-04-24 18:51:19 +0200 | [diff] [blame] | 828 | syntax match redifGoodISSN /\d\{4}-\d\{3}[0-9X]/ contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 829 | |
| 830 | highlight def link redifGoodISSN redifSpecial |
| 831 | |
| 832 | " File-Size |
| 833 | " Based on the example in the documentation. |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 834 | syntax region redifArgumentFileSize start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contains=redifGoodSize contained |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 835 | syntax match redifGoodSize /kb\|bytes/ contained display |
| 836 | |
| 837 | highlight def link redifGoodSize redifSpecial |
| 838 | |
| 839 | " Type |
| 840 | syntax match redifArgumentType /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectType contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 841 | syntax match redifCorrectType /ReDIF-Paper\|ReDIF-Software\|ReDIF-Article\|ReDIF-Chapter\|ReDIF-Book/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 842 | |
| 843 | highlight def link redifArgumentType redifError |
| 844 | highlight def link redifCorrectType redifSpecial |
| 845 | |
| 846 | " Dates: Publication-Date, Creation-Date, Revision-Date, |
| 847 | " Last-Login-Date, Registration-Date |
| 848 | syntax match redifArgumentCreationDate /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectDate contained display |
| 849 | syntax match redifArgumentLastLoginDate /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectDate contained display |
| 850 | syntax match redifArgumentPublicationDate /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectDate contained display |
| 851 | syntax match redifArgumentRegisteredDate /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectDate contained display |
| 852 | syntax match redifArgumentRevisionDate /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectDate contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 853 | syntax match redifCorrectDate /[1-9]\d\{3}\%(-02\%(-[12]\d\|-0[1-9]\)\=\|-\%(0[469]\|11\)\%(-30\|-[12]\d\|-0[1-9]\)\=\|-\%(0[13578]\|1[02]\)\%(-3[01]\|-[12]\d\|-0[1-9]\)\=\)\=/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 854 | |
| 855 | highlight def link redifArgumentCreationDate redifError |
| 856 | highlight def link redifArgumentLastLoginDate redifError |
| 857 | highlight def link redifArgumentPublicationDate redifError |
| 858 | highlight def link redifArgumentRegisteredDate redifError |
| 859 | highlight def link redifArgumentRevisionDate redifError |
| 860 | |
| 861 | " Classification-JEL |
| 862 | syntax match redifArgumentClassificationJEL /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectJEL contained display |
Bram Moolenaar | ff03419 | 2013-04-24 18:51:19 +0200 | [diff] [blame] | 863 | syntax match redifCorrectJEL /\<\%(\u\d\{,2}[,; \t]\s*\)*\u\d\{,2}/ contains=redifSpecialJEL nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 864 | syntax match redifSpecialJEL /\<\u\d\{,2}/ contained display |
| 865 | |
| 866 | highlight def link redifArgumentClassificationJEL redifError |
| 867 | highlight def link redifSpecialJEL redifSpecial |
| 868 | |
| 869 | " Pages |
| 870 | syntax match redifArgumentPages /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectPages contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 871 | syntax match redifCorrectPages /[1-9]\d*-[1-9]\d*/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 872 | |
| 873 | highlight def link redifArgumentPages redifError |
| 874 | |
| 875 | " Name-ASCII |
| 876 | syntax match redifArgumentNameASCII /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectNameASCII contained display |
| 877 | syntax match redifCorrectNameASCII /[ -~]/ contained display |
| 878 | |
| 879 | highlight def link redifArgumentNameASCII redifError |
| 880 | |
| 881 | " Programming-Language |
| 882 | syntax match redifArgumentProgrammingLanguage /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodProgrammingLanguage contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 883 | syntax match redifGoodProgrammingLanguage /\<c++\|\<\%(c\|dos executable\|executable\|fortran\|gauss\|gretl\|java\|mathematica\|matlab\|octave\|ox\|perl\|python\|rats\|r\|shazam\|s-plus\|stata\|tsp international\)\>/ nextgroup=redifWrongLineEnding contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 884 | |
| 885 | highlight def link redifGoodProgrammingLanguage redifSpecial |
| 886 | |
| 887 | " File-Format |
| 888 | " TODO The link in the documentation that gives the list of possible formats is broken. |
| 889 | " ftp://ftp.isi.edu/in-notes/iana/assignments/media-types/media-types |
| 890 | " These are based on the examples in the documentation. |
| 891 | syntax match redifArgumentFileFormat /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodFormat contained display |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 892 | syntax match redifGoodFormat "\a\+/[[:alpha:]+-]\+" nextgroup=redifWrongLineEnding contains=redifSpecialFormat contained display |
| 893 | syntax match redifSpecialFormat "application/atom+xml\|application/ecmascript\|application/EDI-X12\|application/EDIFACT\|application/json\|application/javascript\|application/octet-stream\|application/ogg\|application/pdf\|application/postscript\|application/rdf+xml\|application/rss+xml\|application/soap+xml\|application/font-woff\|application/xhtml+xml\|application/xml\|application/xml-dtd\|application/xop+xml\|application/zip\|application/gzip\|audio/basic\|audio/L24\|audio/mp4\|audio/mpeg\|audio/ogg\|audio/vorbis\|audio/vnd.rn-realaudio\|audio/vnd.wave\|audio/webm\|image/gif\|image/jpeg\|image/pjpeg\|image/png\|image/svg+xml\|image/tiff\|image/vnd.microsoft.icon\|message/http\|message/imdn+xml\|message/partial\|message/rfc822\|model/example\|model/iges\|model/mesh\|model/vrml\|model/x3d+binary\|model/x3d+vrml\|model/x3d+xml\|multipart/mixed\|multipart/alternative\|multipart/related\|multipart/form-data\|multipart/signed\|multipart/encrypted\|text/cmd\|text/css\|text/csv\|text/html\|text/javascript\|text/plain\|text/vcard\|text/xml\|video/mpeg\|video/mp4\|video/ogg\|video/quicktime\|video/webm\|video/x-matroska\|video/x-ms-wmv\|video/x-flv" contained display |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 894 | |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 895 | highlight def link redifSpecialFormat redifSpecial |
| 896 | highlight def link redifArgumentFileFormat redifError |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 897 | |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 898 | " Keywords |
| 899 | " Spell checked |
| 900 | syntax match redifArgumentKeywords /\%(^\S\{-}:\)\@!\S.*/ contains=@Spell,redifKeywordsSemicolon contained |
| 901 | syntax match redifKeywordsSemicolon /;/ contained |
| 902 | |
| 903 | highlight def link redifKeywordsSemicolon redifSpecial |
| 904 | |
| 905 | " Other spell-checked arguments |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 906 | " Very useful when copy-pasting abstracts that may contain hyphens or |
| 907 | " ligatures. |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 908 | syntax region redifArgumentAbstract start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contains=@Spell contained |
| 909 | syntax region redifArgumentAvailability start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contains=@Spell contained |
| 910 | syntax region redifArgumentBookTitle start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contains=@Spell contained |
| 911 | syntax region redifArgumentDescription start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contains=@Spell contained |
| 912 | syntax region redifArgumentFileRestriction start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contains=@Spell contained |
| 913 | syntax region redifArgumentNote start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contains=@Spell contained |
| 914 | syntax region redifArgumentNotification start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contains=@Spell contained |
| 915 | syntax region redifArgumentRestriction start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contains=@Spell contained |
| 916 | syntax region redifArgumentTitle start=/\%(^\S\{-}:\)\@!\S/ end=/^\S\{-}:/me=s-1 contains=@Spell contained |
| 917 | |
| 918 | " Wrong line ending |
| 919 | syntax match redifWrongLineEnding /.\+/ contained display |
| 920 | |
| 921 | highlight def link redifWrongLineEnding redifError |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 922 | |
| 923 | " Final highlight |
| 924 | highlight def link redifComment Comment |
| 925 | highlight def link redifError Error |
| 926 | highlight def link redifField Identifier |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 927 | highlight def link redifFieldDeprecated Identifier |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 928 | highlight def link redifSpecial Special |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 929 | " For deprecated fields: |
| 930 | highlight redifFieldDeprecated term=undercurl cterm=undercurl gui=undercurl guisp=DarkGrey |
| 931 | |
| 932 | " Sync: The template-type (ReDIF-Paper, ReDIF-Archive, etc.) influences which |
| 933 | " fields can follow. Thus sync must search backwards for it. |
| 934 | " |
Bram Moolenaar | 6aa5729 | 2021-08-14 21:25:52 +0200 | [diff] [blame] | 935 | " I would like to simply ask VIM to search backward for the first occurrence of |
Bram Moolenaar | 0187ca0 | 2013-04-12 15:09:51 +0200 | [diff] [blame] | 936 | " /^Template-Type:/, but it does not seem to be possible, so I have to start |
| 937 | " from the beginning of the file... This might slow down a lot for files that |
| 938 | " contain a lot of Template-Type statements. |
| 939 | syntax sync fromstart |
| 940 | |
| 941 | " The problem with syntax sync match (tried below), it is that, for example, |
| 942 | " it cannot realize when it is inside a Author-Name cluster, which is inside a |
| 943 | " Template-Type template... |
| 944 | " |
| 945 | " TODO Is this linecont pattern really useful? It seems to work anyway... |
| 946 | "syntax sync linecont /^\(Template-Type:\)\=\s*$/ |
| 947 | " TODO This sync is surprising... It seems to work on several lines even |
| 948 | " though I replaced \_s* by \s*, even without the linecont pattern... |
| 949 | "syntax sync match redifSyncForTemplatePaper groupthere redifRegionTemplatePaper /^Template-Type:\s*ReDIF-Paper \d\+\.\d\+/ |
| 950 | "syntax sync match redifSyncForTemplateArticle groupthere redifRegionTemplateArticle /^Template-Type:\s*ReDIF-Article \d\+\.\d\+/ |
| 951 | "syntax sync match redifSyncForTemplateChapter groupthere redifRegionTemplateChapter /^Template-Type:\s*ReDIF-Chapter \d\+\.\d\+/ |
| 952 | "syntax sync match redifSyncForTemplateBook groupthere redifRegionTemplateBook /^Template-Type:\s*ReDIF-Book \d\+\.\d\+/ |
| 953 | "syntax sync match redifSyncForTemplateSoftware groupthere redifRegionTemplateSoftware /^Template-Type:\s*ReDIF-Software \d\+\.\d\+/ |
| 954 | "syntax sync match redifSyncForTemplateArchive groupthere redifRegionTemplateArchive /^Template-Type:\s*ReDIF-Archive \d\+\.\d\+/ |
| 955 | "syntax sync match redifSyncForTemplateSeries groupthere redifRegionTemplateSeries /^Template-Type:\s*ReDIF-Series \d\+\.\d\+/ |
| 956 | "syntax sync match redifSyncForTemplateInstitution groupthere redifRegionTemplateInstitution /^Template-Type:\s*ReDIF-Institution \d\+\.\d\+/ |
| 957 | "syntax sync match redifSyncForTemplatePerson groupthere redifRegionTemplatePerson /^Template-Type:\s*ReDIF-Person \d\+\.\d\+/ |
| 958 | |
| 959 | " I do not really know how sync linebreaks works, but it helps when making |
| 960 | " changes on the argument when this argument is not on the same line than its |
| 961 | " field. I just assume that people won't leave more than one line of |
| 962 | " whitespace between fields and arguments (which is already very unlikely) |
| 963 | " hence the value of 2. |
| 964 | syntax sync linebreaks=2 |
| 965 | |
| 966 | " Since folding is defined by the syntax, set foldmethod to syntax. |
| 967 | set foldmethod=syntax |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 968 | |
| 969 | " Set "b:current_syntax" to the name of the syntax at the end: |
| 970 | let b:current_syntax="redif" |