annotate runtime/syntax/redif.vim @ 4269:a079ef0ce001

Move redif syntax file to the right directory. Disable recognizing .rdf as a redif file.
author Bram Moolenaar <bram@vim.org>
date Sat, 06 Apr 2013 17:26:26 +0200
parents
children 9b772e48f79e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4269
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 " Vim syntax file
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 " Language: ReDIF
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 " Maintainer: Axel Castellane <axel.castellane@polytechnique.edu>
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 " Last Change: 2013 Feb 20
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5 " Original Author: Axel Castellane
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 " Source: http://openlib.org/acmes/root/docu/redif_1.html
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 " Note: The ReDIF format is used by RePEc.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 " Start with a check for "b:current_syntax". If it is defined, some other
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10 " syntax file, earlier in 'runtimepath' was already loaded:
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 if exists("b:current_syntax")
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 finish
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13 endif
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15 " Sync: The template-type (ReDIF-Paper, ReDIF-Archive, etc.) influences which
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16 " fields can follow. Thus sync must start from the beginning to know which
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
17 " fields are right or wrong.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
18 syntax sync fromstart
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
19
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20 " ReDIF is case-insensitive
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21 syntax case ignore
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
23 " Structure: Some fields determine what fields can come next. For example:
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
24 " Template-Type
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
25 " *-Name
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
26 " File-URL
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
27 " *-Institution
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
28 " Those fields span a syntax region over several lines so that these regions
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
29 " can only contain their respective items.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
30 "
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
31 " Other fields (except comments) can only happen in one of these regions.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
32
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
33 " Comments must start with # as the first character of the line, otherwise
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
34 " I believe that they are considered as part of an argument.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
35 syntax region redifComment start=/^#/ end=/$/ containedin=ALL display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
36
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
37 " Beginning: Anything which is not a comment is not allowed before a
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
38 " "Template-Type:" statement. However, not to trouble the users when beginning
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
39 " writing a Template-Type, this are not highlighted as errors.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
40 syntax region redifIncorrectBeginningOfFile start=/\%^/ end=/^Template-Type:\_s*ReDIF-\%(Paper\|Article\|Chapter\|Book\|Software\|Archive\|Series\|Institution\|Person\) \d\+\.\d\+/me=s-1 contains=redifComment,redifBeginningOfCorrectTemplateType,redifFieldTemplateType
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
41 syntax match redifBeginningOfCorrectTemplateType /^\cT\%[emplate-Type:]$/ display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
42
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
43 highlight def link redifIncorrectBeginningOfFile redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
44
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
45 " Defines the 9 possible multi-lines regions of Template-Type and the fields
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
46 " they can contain.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
47 syntax region redifRegionTemplatePaper start=/^Template-Type:\_s*ReDIF-Paper \d\+\.\d\+/ end=/^Template-Type:\_s*ReDIF-\%(Paper\|Article\|Chapter\|Book\|Software\|Archive\|Series\|Institution\|Person\) \d\+\.\d\+/me=s-1 contains=redifUnknownField,redifRegionClusterAuthor,redifRegionClusterFile,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
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
48 syntax region redifRegionTemplateArticle start=/^Template-Type:\_s*ReDIF-Article \d\+\.\d\+/ end=/^Template-Type:\_s*ReDIF-\%(Paper\|Article\|Chapter\|Book\|Software\|Archive\|Series\|Institution\|Person\) \d\+\.\d\+/me=s-1 contains=redifUnknownField,redifRegionClusterAuthor,redifRegionClusterFile,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
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
49 syntax region redifRegionTemplateChapter start=/^Template-Type:\_s*ReDIF-Chapter \d\+\.\d\+/ end=/^Template-Type:\_s*ReDIF-\%(Paper\|Article\|Chapter\|Book\|Software\|Archive\|Series\|Institution\|Person\) \d\+\.\d\+/me=s-1 contains=redifUnknownField,redifRegionClusterAuthor,redifRegionClusterFile,redifRegionClusterProvider,redifRegionClusterPublisher,redifRegionClusterEditor,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
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
50 syntax region redifRegionTemplateBook start=/^Template-Type:\_s*ReDIF-Book \d\+\.\d\+/ end=/^Template-Type:\_s*ReDIF-\%(Paper\|Article\|Chapter\|Book\|Software\|Archive\|Series\|Institution\|Person\) \d\+\.\d\+/me=s-1 contains=redifUnknownField,redifRegionClusterAuthor,redifRegionClusterFile,redifRegionClusterProvider,redifRegionClusterPublisher,redifRegionClusterEditor,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
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
51 syntax region redifRegionTemplateSoftware start=/^Template-Type:\_s*ReDIF-Software \d\+\.\d\+/ end=/^Template-Type:\_s*ReDIF-\%(Paper\|Article\|Chapter\|Book\|Software\|Archive\|Series\|Institution\|Person\) \d\+\.\d\+/me=s-1 contains=redifUnknownField,redifRegionClusterAuthor,redifRegionClusterFile,redifFieldHandleOfWork,redifFieldTitle,redifFieldProgrammingLanguage,redifFieldAbstract,redifFieldNumber,redifFieldVersion,redifFieldClassificationJEL,redifFieldKeywords,redifFieldSize,redifFieldSeries,redifFieldCreationDate,redifFieldRevisionDate,redifFieldNote,redifFieldRequires,redifFieldArticleHandle,redifFieldBookHandle,redifFieldChapterHandle,redifFieldPaperHandle,redifFieldSoftwareHandle,redifFieldTemplateType
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
52 syntax region redifRegionTemplateArchive start=/^Template-Type:\_s*ReDIF-Archive \d\+\.\d\+/ end=/^Template-Type:\_s*ReDIF-\%(Paper\|Article\|Chapter\|Book\|Software\|Archive\|Series\|Institution\|Person\) \d\+\.\d\+/me=s-1 contains=redifUnknownField,redifFieldHandleOfArchive,redifFieldURL,redifFieldMaintainerEmail,redifFieldName,redifFieldMaintainerName,redifFieldMaintainerPhone,redifFieldMaintainerFax,redifFieldClassificationJEL,redifFieldHomepage,redifFieldDescription,redifFieldNotification,redifFieldRestriction,redifFieldTemplateType
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
53 syntax region redifRegionTemplateSeries start=/^Template-Type:\_s*ReDIF-Series \d\+\.\d\+/ end=/^Template-Type:\_s*ReDIF-\%(Paper\|Article\|Chapter\|Book\|Software\|Archive\|Series\|Institution\|Person\) \d\+\.\d\+/me=s-1 contains=redifUnknownField,redifRegionClusterProvider,redifRegionClusterPublisher,redifRegionClusterEditor,redifFieldName,redifFieldHandleOfSeries,redifFieldMaintainerEmail,redifFieldType,redifFieldOrderEmail,redifFieldOrderHomepage,redifFieldOrderPostal,redifFieldPrice,redifFieldRestriction,redifFieldMaintainerPhone,redifFieldMaintainerFax,redifFieldMaintainerName,redifFieldDescription,redifFieldClassificationJEL,redifFieldKeywords,redifFieldNotification,redifFieldISSN,redifFieldFollowup,redifFieldPredecessor,redifFieldTemplateType
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
54 syntax region redifRegionTemplateInstitution start=/^Template-Type:\_s*ReDIF-Institution \d\+\.\d\+/ end=/^Template-Type:\_s*ReDIF-\%(Paper\|Article\|Chapter\|Book\|Software\|Archive\|Series\|Institution\|Person\) \d\+\.\d\+/me=s-1 contains=redifUnknownField,redifRegionClusterPrimary,redifRegionClusterSecondary,redifRegionClusterTertiary,redifRegionClusterQuaternary,redifFieldHandleOfInstitution,redifFieldPrimaryDefunct,redifFieldSecondaryDefunct,redifFieldTertiaryDefunct,redifFieldTemplateType
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
55 syntax region redifRegionTemplatePerson start=/^Template-Type:\_s*ReDIF-Person \d\+\.\d\+/ end=/^Template-Type:\_s*ReDIF-\%(Paper\|Article\|Chapter\|Book\|Software\|Archive\|Series\|Institution\|Person\) \d\+\.\d\+/me=s-1 contains=redifUnknownField,redifRegionClusterWorkplace,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,redifFieldTemplateType
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
56
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
57 " For each template, non-whitespaces ending with a colon must be
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
58 " correct fields. By default, they are wrong fields.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
59 syntax match redifUnknownField /^\S\{-1,}:/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
60
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
61 highlight def link redifUnknownField redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
62
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
63 " Defines the 12 possible clusters and what they can contain
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
64 syntax region redifRegionClusterAuthorWorkplace start=/^Author-Workplace-Name:/ skip=/^Author-Workplace-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\c\S\{-1,}:/me=s-1 contained contains=redifFieldAuthorWorkplaceName,redifFieldAuthorWorkplaceHomepage,redifFieldAuthorWorkplaceNameEnglish,redifFieldAuthorWorkplacePostal,redifFieldAuthorWorkplaceLocation,redifFieldAuthorWorkplaceEmail,redifFieldAuthorWorkplacePhone,redifFieldAuthorWorkplaceFax,redifFieldAuthorWorkplaceInstitution
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
65 syntax region redifRegionClusterEditorWorkplace start=/^Editor-Workplace-Name:/ skip=/^Editor-Workplace-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\c\S\{-1,}:/me=s-1 contained contains=redifFieldEditorWorkplaceName,redifFieldEditorWorkplaceHomepage,redifFieldEditorWorkplaceNameEnglish,redifFieldEditorWorkplacePostal,redifFieldEditorWorkplaceLocation,redifFieldEditorWorkplaceEmail,redifFieldEditorWorkplacePhone,redifFieldEditorWorkplaceFax,redifFieldEditorWorkplaceInstitution
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
66 syntax region redifRegionClusterWorkplace start=/^Workplace-Name:/ skip=/^Workplace-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\c\S\{-1,}:/me=s-1 contained contains=redifFieldWorkplaceName,redifFieldWorkplaceHomepage,redifFieldWorkplaceNameEnglish,redifFieldWorkplacePostal,redifFieldWorkplaceLocation,redifFieldWorkplaceEmail,redifFieldWorkplacePhone,redifFieldWorkplaceFax,redifFieldWorkplaceInstitution
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
67 syntax region redifRegionClusterPrimary start=/^Primary-Name:/ skip=/^Primary-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\c\S\{-1,}:/me=s-1 contained contains=redifFieldPrimaryName,redifFieldPrimaryHomepage,redifFieldPrimaryNameEnglish,redifFieldPrimaryPostal,redifFieldPrimaryLocation,redifFieldPrimaryEmail,redifFieldPrimaryPhone,redifFieldPrimaryFax,redifFieldPrimaryInstitution
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
68 syntax region redifRegionClusterSecondary start=/^Secondary-Name:/ skip=/^Secondary-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\c\S\{-1,}:/me=s-1 contained contains=redifFieldSecondaryName,redifFieldSecondaryHomepage,redifFieldSecondaryNameEnglish,redifFieldSecondaryPostal,redifFieldSecondaryLocation,redifFieldSecondaryEmail,redifFieldSecondaryPhone,redifFieldSecondaryFax,redifFieldSecondaryInstitution
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
69 syntax region redifRegionClusterTertiary start=/^Tertiary-Name:/ skip=/^Tertiary-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\c\S\{-1,}:/me=s-1 contained contains=redifFieldTertiaryName,redifFieldTertiaryHomepage,redifFieldTertiaryNameEnglish,redifFieldTertiaryPostal,redifFieldTertiaryLocation,redifFieldTertiaryEmail,redifFieldTertiaryPhone,redifFieldTertiaryFax,redifFieldTertiaryInstitution
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
70 syntax region redifRegionClusterQuaternary start=/^Quaternary-Name:/ skip=/^Quaternary-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\c\S\{-1,}:/me=s-1 contained contains=redifFieldQuaternaryName,redifFieldQuaternaryHomepage,redifFieldQuaternaryNameEnglish,redifFieldQuaternaryPostal,redifFieldQuaternaryLocation,redifFieldQuaternaryEmail,redifFieldQuaternaryPhone,redifFieldQuaternaryFax,redifFieldQuaternaryInstitution
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
71 syntax region redifRegionClusterProvider start=/^Provider-Name:/ skip=/^Provider-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\c\S\{-1,}:/me=s-1 contained contains=redifFieldProviderName,redifFieldProviderHomepage,redifFieldProviderNameEnglish,redifFieldProviderPostal,redifFieldProviderLocation,redifFieldProviderEmail,redifFieldProviderPhone,redifFieldProviderFax,redifFieldProviderInstitution
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
72 syntax region redifRegionClusterPublisher start=/^Publisher-Name:/ skip=/^Publisher-\%(Name-English\|Homepage\|Postal\|Location\|Email\|Phone\|Fax\|Institution\):/ end=/^\c\S\{-1,}:/me=s-1 contained contains=redifFieldPublisherName,redifFieldPublisherHomepage,redifFieldPublisherNameEnglish,redifFieldPublisherPostal,redifFieldPublisherLocation,redifFieldPublisherEmail,redifFieldPublisherPhone,redifFieldPublisherFax,redifFieldPublisherInstitution
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
73 syntax region redifRegionClusterAuthor start=/^Author-Name:/ skip=/^Author-\%(Name\%(-First\|-Last\)\|Homepage\|Email\|Fax\|Postal\|Phone\|Person\|Workplace-Name\):/ end=/^\c\S\{-1,}:/me=s-1 contained contains=redifRegionClusterAuthorWorkplace,redifFieldAuthorName,redifFieldAuthorNameFirst,redifFieldAuthorNameLast,redifFieldAuthorHomepage,redifFieldAuthorEmail,redifFieldAuthorFax,redifFieldAuthorPostal,redifFieldAuthorPhone,redifFieldAuthorPerson
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
74 syntax region redifRegionClusterEditor start=/^Editor-Name:/ skip=/^Editor-\%(Name\%(-First\|-Last\)\|Homepage\|Email\|Fax\|Postal\|Phone\|Person\|Workplace-Name\):/ end=/^\c\S\{-1,}:/me=s-1 contained contains=redifRegionClusterEditorWorkplace,redifFieldEditorName,redifFieldEditorNameFirst,redifFieldEditorNameLast,redifFieldEditorHomepage,redifFieldEditorEmail,redifFieldEditorFax,redifFieldEditorPostal,redifFieldEditorPhone,redifFieldEditorPerson
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
75 syntax region redifRegionClusterFile start=/^File-URL:/ skip=/^File-\%(Format\|Function\|Size\|Restriction\):/ end=/^\c\S\{-1,}:/me=s-1 contained contains=redifFieldFileURL,redifFieldFileFormat,redifFieldFileFunction,redifFieldFileSize,redifFieldFileRestriction
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
76
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
77 " A field not in the cluster ends the cluster, so no need to define wrong
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
78 " fields, because they will be handled by the containing UnknownField region
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
79 " immediately when exiting the cluster.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
80
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
81 " All the possible fields
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
82 " Note: The "Handle" field is handled a little bit differently, because it
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
83 " does not have the same meaning depending on the Template-Type.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
84 " /redifFieldHandleOf....
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
85 syntax match redifFieldAbstract /^Abstract:/ skipwhite skipempty nextgroup=redifArgumentAbstract contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
86 syntax match redifFieldArticleHandle /^Article-Handle:/ skipwhite skipempty nextgroup=redifArgumentArticleHandle contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
87 syntax match redifFieldAuthorArticle /^Author-Article:/ skipwhite skipempty nextgroup=redifArgumentAuthorArticle contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
88 syntax match redifFieldAuthorBook /^Author-Book:/ skipwhite skipempty nextgroup=redifArgumentAuthorBook contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
89 syntax match redifFieldAuthorChapter /^Author-Chapter:/ skipwhite skipempty nextgroup=redifArgumentAuthorChapter contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
90 syntax match redifFieldAuthorEmail /^Author-Email:/ skipwhite skipempty nextgroup=redifArgumentAuthorEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
91 syntax match redifFieldAuthorFax /^Author-Fax:/ skipwhite skipempty nextgroup=redifArgumentAuthorFax contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
92 syntax match redifFieldAuthorHomepage /^Author-Homepage:/ skipwhite skipempty nextgroup=redifArgumentAuthorHomepage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
93 syntax match redifFieldAuthorName /^Author-Name:/ skipwhite skipempty nextgroup=redifArgumentAuthorName contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
94 syntax match redifFieldAuthorNameFirst /^Author-Name-First:/ skipwhite skipempty nextgroup=redifArgumentAuthorNameFirst contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
95 syntax match redifFieldAuthorNameLast /^Author-Name-Last:/ skipwhite skipempty nextgroup=redifArgumentAuthorNameLast contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
96 syntax match redifFieldAuthorPaper /^Author-Paper:/ skipwhite skipempty nextgroup=redifArgumentAuthorPaper contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
97 syntax match redifFieldAuthorPerson /^Author-Person:/ skipwhite skipempty nextgroup=redifArgumentAuthorPerson contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
98 syntax match redifFieldAuthorPhone /^Author-Phone:/ skipwhite skipempty nextgroup=redifArgumentAuthorPhone contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
99 syntax match redifFieldAuthorPostal /^Author-Postal:/ skipwhite skipempty nextgroup=redifArgumentAuthorPostal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
100 syntax match redifFieldAuthorSoftware /^Author-Software:/ skipwhite skipempty nextgroup=redifArgumentAuthorSoftware contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
101 syntax match redifFieldAuthorWorkplaceEmail /^Author-Workplace-Email:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
102 syntax match redifFieldAuthorWorkplaceFax /^Author-Workplace-Fax:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceFax contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
103 syntax match redifFieldAuthorWorkplaceHomepage /^Author-Workplace-Homepage:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceHomepage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
104 syntax match redifFieldAuthorWorkplaceInstitution /^Author-Workplace-Institution:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceInstitution contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
105 syntax match redifFieldAuthorWorkplaceLocation /^Author-Workplace-Location:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceLocation contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
106 syntax match redifFieldAuthorWorkplaceName /^Author-Workplace-Name:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceName contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
107 syntax match redifFieldAuthorWorkplaceNameEnglish /^Author-Workplace-Name-English:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplaceNameEnglish contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
108 syntax match redifFieldAuthorWorkplacePhone /^Author-Workplace-Phone:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplacePhone contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
109 syntax match redifFieldAuthorWorkplacePostal /^Author-Workplace-Postal:/ skipwhite skipempty nextgroup=redifArgumentAuthorWorkplacePostal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
110 syntax match redifFieldAvailability /^Availability:/ skipwhite skipempty nextgroup=redifArgumentAvailability contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
111 syntax match redifFieldBookHandle /^Book-Handle:/ skipwhite skipempty nextgroup=redifArgumentBookHandle contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
112 syntax match redifFieldBookTitle /^Book-Title:/ skipwhite skipempty nextgroup=redifArgumentBookTitle contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
113 syntax match redifFieldChapterHandle /^Chapter-Handle:/ skipwhite skipempty nextgroup=redifArgumentChapterHandle contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
114 syntax match redifFieldChapter /^Chapter:/ skipwhite skipempty nextgroup=redifArgumentChapter contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
115 syntax match redifFieldClassificationJEL /^Classification-JEL:/ skipwhite skipempty nextgroup=redifArgumentClassificationJEL contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
116 syntax match redifFieldContactEmail /^Contact-Email:/ skipwhite skipempty nextgroup=redifArgumentContactEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
117 syntax match redifFieldCreationDate /^Creation-Date:/ skipwhite skipempty nextgroup=redifArgumentCreationDate contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
118 syntax match redifFieldDescription /^Description:/ skipwhite skipempty nextgroup=redifArgumentDescription contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
119 syntax match redifFieldEdition /^Edition:/ skipwhite skipempty nextgroup=redifArgumentEdition contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
120 syntax match redifFieldEditorBook /^Editor-Book:/ skipwhite skipempty nextgroup=redifArgumentEditorBook contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
121 syntax match redifFieldEditorEmail /^Editor-Email:/ skipwhite skipempty nextgroup=redifArgumentEditorEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
122 syntax match redifFieldEditorFax /^Editor-Fax:/ skipwhite skipempty nextgroup=redifArgumentEditorFax contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
123 syntax match redifFieldEditorHomepage /^Editor-Homepage:/ skipwhite skipempty nextgroup=redifArgumentEditorHomepage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
124 syntax match redifFieldEditorName /^Editor-Name:/ skipwhite skipempty nextgroup=redifArgumentEditorName contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
125 syntax match redifFieldEditorNameFirst /^Editor-Name-First:/ skipwhite skipempty nextgroup=redifArgumentEditorNameFirst contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
126 syntax match redifFieldEditorNameLast /^Editor-Name-Last:/ skipwhite skipempty nextgroup=redifArgumentEditorNameLast contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
127 syntax match redifFieldEditorPerson /^Editor-Person:/ skipwhite skipempty nextgroup=redifArgumentEditorPerson contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
128 syntax match redifFieldEditorPhone /^Editor-Phone:/ skipwhite skipempty nextgroup=redifArgumentEditorPhone contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
129 syntax match redifFieldEditorPostal /^Editor-Postal:/ skipwhite skipempty nextgroup=redifArgumentEditorPostal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
130 syntax match redifFieldEditorSeries /^Editor-Series:/ skipwhite skipempty nextgroup=redifArgumentEditorSeries contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
131 syntax match redifFieldEditorWorkplaceEmail /^Editor-Workplace-Email:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
132 syntax match redifFieldEditorWorkplaceFax /^Editor-Workplace-Fax:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceFax contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
133 syntax match redifFieldEditorWorkplaceHomepage /^Editor-Workplace-Homepage:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceHomepage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
134 syntax match redifFieldEditorWorkplaceInstitution /^Editor-Workplace-Institution:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceInstitution contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
135 syntax match redifFieldEditorWorkplaceLocation /^Editor-Workplace-Location:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceLocation contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
136 syntax match redifFieldEditorWorkplaceName /^Editor-Workplace-Name:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceName contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
137 syntax match redifFieldEditorWorkplaceNameEnglish /^Editor-Workplace-Name-English:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplaceNameEnglish contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
138 syntax match redifFieldEditorWorkplacePhone /^Editor-Workplace-Phone:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplacePhone contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
139 syntax match redifFieldEditorWorkplacePostal /^Editor-Workplace-Postal:/ skipwhite skipempty nextgroup=redifArgumentEditorWorkplacePostal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
140 syntax match redifFieldEmail /^Email:/ skipwhite skipempty nextgroup=redifArgumentEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
141 syntax match redifFieldFax /^Fax:/ skipwhite skipempty nextgroup=redifArgumentFax contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
142 syntax match redifFieldFileFormat /^File-Format:/ skipwhite skipempty nextgroup=redifArgumentFileFormat contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
143 syntax match redifFieldFileFunction /^File-Function:/ skipwhite skipempty nextgroup=redifArgumentFileFunction contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
144 syntax match redifFieldFileRestriction /^File-Restriction:/ skipwhite skipempty nextgroup=redifArgumentFileRestriction contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
145 syntax match redifFieldFileSize /^File-Size:/ skipwhite skipempty nextgroup=redifArgumentFileSize contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
146 syntax match redifFieldFileURL /^File-URL:/ skipwhite skipempty nextgroup=redifArgumentFileURL contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
147 syntax match redifFieldFollowup /^Followup:/ skipwhite skipempty nextgroup=redifArgumentFollowup contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
148 syntax match redifFieldHandleOfArchive /^Handle:/ skipwhite skipempty nextgroup=redifArgumentHandleOfArchive contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
149 syntax match redifFieldHandleOfInstitution /^Handle:/ skipwhite skipempty nextgroup=redifArgumentHandleOfInstitution contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
150 syntax match redifFieldHandleOfPerson /^Handle:/ skipwhite skipempty nextgroup=redifArgumentHandleOfPerson contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
151 syntax match redifFieldHandleOfSeries /^Handle:/ skipwhite skipempty nextgroup=redifArgumentHandleOfSeries contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
152 syntax match redifFieldHandleOfWork /^Handle:/ skipwhite skipempty nextgroup=redifArgumentHandleOfWork contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
153 syntax match redifFieldHasChapter /^HasChapter:/ skipwhite skipempty nextgroup=redifArgumentHasChapter contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
154 syntax match redifFieldHomepage /^Homepage:/ skipwhite skipempty nextgroup=redifArgumentHomepage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
155 syntax match redifFieldInBook /^In-Book:/ skipwhite skipempty nextgroup=redifArgumentInBook contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
156 syntax match redifFieldISBN /^ISBN:/ skipwhite skipempty nextgroup=redifArgumentISBN contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
157 syntax match redifFieldISSN /^ISSN:/ skipwhite skipempty nextgroup=redifArgumentISSN contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
158 syntax match redifFieldIssue /^Issue:/ skipwhite skipempty nextgroup=redifArgumentIssue contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
159 syntax match redifFieldJournal /^Journal:/ skipwhite skipempty nextgroup=redifArgumentJournal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
160 syntax match redifFieldKeywords /^Keywords:/ skipwhite skipempty nextgroup=redifArgumentKeywords contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
161 syntax match redifFieldKeywords /^Keywords:/ skipwhite skipempty nextgroup=redifArgumentKeywords contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
162 syntax match redifFieldLanguage /^Language:/ skipwhite skipempty nextgroup=redifArgumentLanguage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
163 syntax match redifFieldLastLoginDate /^Last-Login-Date:/ skipwhite skipempty nextgroup=redifArgumentLastLoginDate contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
164 syntax match redifFieldLength /^Length:/ skipwhite skipempty nextgroup=redifArgumentLength contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
165 syntax match redifFieldMaintainerEmail /^Maintainer-Email:/ skipwhite skipempty nextgroup=redifArgumentMaintainerEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
166 syntax match redifFieldMaintainerFax /^Maintainer-Fax:/ skipwhite skipempty nextgroup=redifArgumentMaintainerFax contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
167 syntax match redifFieldMaintainerName /^Maintainer-Name:/ skipwhite skipempty nextgroup=redifArgumentMaintainerName contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
168 syntax match redifFieldMaintainerPhone /^Maintainer-Phone:/ skipwhite skipempty nextgroup=redifArgumentMaintainerPhone contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
169 syntax match redifFieldMonth /^Month:/ skipwhite skipempty nextgroup=redifArgumentMonth contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
170 syntax match redifFieldNameASCII /^Name-ASCII:/ skipwhite skipempty nextgroup=redifArgumentNameASCII contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
171 syntax match redifFieldNameFirst /^Name-First:/ skipwhite skipempty nextgroup=redifArgumentNameFirst contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
172 syntax match redifFieldNameFull /^Name-Full:/ skipwhite skipempty nextgroup=redifArgumentNameFull contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
173 syntax match redifFieldNameLast /^Name-Last:/ skipwhite skipempty nextgroup=redifArgumentNameLast contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
174 syntax match redifFieldNameMiddle /^Name-Middle:/ skipwhite skipempty nextgroup=redifArgumentNameMiddle contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
175 syntax match redifFieldNamePrefix /^Name-Prefix:/ skipwhite skipempty nextgroup=redifArgumentNamePrefix contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
176 syntax match redifFieldNameSuffix /^Name-Suffix:/ skipwhite skipempty nextgroup=redifArgumentNameSuffix contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
177 syntax match redifFieldName /^Name:/ skipwhite skipempty nextgroup=redifArgumentName contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
178 syntax match redifFieldNote /^Note:/ skipwhite skipempty nextgroup=redifArgumentNote contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
179 syntax match redifFieldNotification /^Notification:/ skipwhite skipempty nextgroup=redifArgumentNotification contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
180 syntax match redifFieldNumber /^Number:/ skipwhite skipempty nextgroup=redifArgumentNumber contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
181 syntax match redifFieldOrderEmail /^Order-Email:/ skipwhite skipempty nextgroup=redifArgumentOrderEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
182 syntax match redifFieldOrderHomepage /^Order-Homepage:/ skipwhite skipempty nextgroup=redifArgumentOrderHomepage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
183 syntax match redifFieldOrderPostal /^Order-Postal:/ skipwhite skipempty nextgroup=redifArgumentOrderPostal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
184 syntax match redifFieldOrderURL /^Order-URL:/ skipwhite skipempty nextgroup=redifArgumentOrderURL contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
185 syntax match redifFieldPages /^Pages:/ skipwhite skipempty nextgroup=redifArgumentPages contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
186 syntax match redifFieldPaperHandle /^Paper-Handle:/ skipwhite skipempty nextgroup=redifArgumentPaperHandle contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
187 syntax match redifFieldPhone /^Phone:/ skipwhite skipempty nextgroup=redifArgumentPhone contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
188 syntax match redifFieldPostal /^Postal:/ skipwhite skipempty nextgroup=redifArgumentPostal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
189 syntax match redifFieldPredecessor /^Predecessor:/ skipwhite skipempty nextgroup=redifArgumentPredecessor contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
190 syntax match redifFieldPrice /^Price:/ skipwhite skipempty nextgroup=redifArgumentPrice contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
191 syntax match redifFieldPrimaryDefunct /^Primary-Defunct:/ skipwhite skipempty nextgroup=redifArgumentPrimaryDefunct contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
192 syntax match redifFieldPrimaryEmail /^Primary-Email:/ skipwhite skipempty nextgroup=redifArgumentPrimaryEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
193 syntax match redifFieldPrimaryFax /^Primary-Fax:/ skipwhite skipempty nextgroup=redifArgumentPrimaryFax contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
194 syntax match redifFieldPrimaryHomepage /^Primary-Homepage:/ skipwhite skipempty nextgroup=redifArgumentPrimaryHomepage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
195 syntax match redifFieldPrimaryInstitution /^Primary-Institution:/ skipwhite skipempty nextgroup=redifArgumentPrimaryInstitution contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
196 syntax match redifFieldPrimaryLocation /^Primary-Location:/ skipwhite skipempty nextgroup=redifArgumentPrimaryLocation contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
197 syntax match redifFieldPrimaryName /^Primary-Name:/ skipwhite skipempty nextgroup=redifArgumentPrimaryName contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
198 syntax match redifFieldPrimaryNameEnglish /^Primary-Name-English:/ skipwhite skipempty nextgroup=redifArgumentPrimaryNameEnglish contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
199 syntax match redifFieldPrimaryPhone /^Primary-Phone:/ skipwhite skipempty nextgroup=redifArgumentPrimaryPhone contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
200 syntax match redifFieldPrimaryPostal /^Primary-Postal:/ skipwhite skipempty nextgroup=redifArgumentPrimaryPostal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
201 syntax match redifFieldProgrammingLanguage /^Programming-Language:/ skipwhite skipempty nextgroup=redifArgumentProgrammingLanguage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
202 syntax match redifFieldProviderEmail /^Provider-Email:/ skipwhite skipempty nextgroup=redifArgumentProviderEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
203 syntax match redifFieldProviderFax /^Provider-Fax:/ skipwhite skipempty nextgroup=redifArgumentProviderFax contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
204 syntax match redifFieldProviderHomepage /^Provider-Homepage:/ skipwhite skipempty nextgroup=redifArgumentProviderHomepage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
205 syntax match redifFieldProviderInstitution /^Provider-Institution:/ skipwhite skipempty nextgroup=redifArgumentProviderInstitution contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
206 syntax match redifFieldProviderLocation /^Provider-Location:/ skipwhite skipempty nextgroup=redifArgumentProviderLocation contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
207 syntax match redifFieldProviderName /^Provider-Name:/ skipwhite skipempty nextgroup=redifArgumentProviderName contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
208 syntax match redifFieldProviderNameEnglish /^Provider-Name-English:/ skipwhite skipempty nextgroup=redifArgumentProviderNameEnglish contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
209 syntax match redifFieldProviderPhone /^Provider-Phone:/ skipwhite skipempty nextgroup=redifArgumentProviderPhone contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
210 syntax match redifFieldProviderPostal /^Provider-Postal:/ skipwhite skipempty nextgroup=redifArgumentProviderPostal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
211 syntax match redifFieldPublicationDate /^Publication-Date:/ skipwhite skipempty nextgroup=redifArgumentPublicationDate contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
212 syntax match redifFieldPublicationStatus /^Publication-Status:/ skipwhite skipempty nextgroup=redifArgumentPublicationStatus contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
213 syntax match redifFieldPublicationType /^Publication-Type:/ skipwhite skipempty nextgroup=redifArgumentPublicationType contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
214 syntax match redifFieldPublisherEmail /^Publisher-Email:/ skipwhite skipempty nextgroup=redifArgumentPublisherEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
215 syntax match redifFieldPublisherFax /^Publisher-Fax:/ skipwhite skipempty nextgroup=redifArgumentPublisherFax contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
216 syntax match redifFieldPublisherHomepage /^Publisher-Homepage:/ skipwhite skipempty nextgroup=redifArgumentPublisherHomepage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
217 syntax match redifFieldPublisherInstitution /^Publisher-Institution:/ skipwhite skipempty nextgroup=redifArgumentPublisherInstitution contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
218 syntax match redifFieldPublisherLocation /^Publisher-Location:/ skipwhite skipempty nextgroup=redifArgumentPublisherLocation contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
219 syntax match redifFieldPublisherName /^Publisher-Name:/ skipwhite skipempty nextgroup=redifArgumentPublisherName contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
220 syntax match redifFieldPublisherNameEnglish /^Publisher-Name-English:/ skipwhite skipempty nextgroup=redifArgumentPublisherNameEnglish contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
221 syntax match redifFieldPublisherPhone /^Publisher-Phone:/ skipwhite skipempty nextgroup=redifArgumentPublisherPhone contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
222 syntax match redifFieldPublisherPostal /^Publisher-Postal:/ skipwhite skipempty nextgroup=redifArgumentPublisherPostal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
223 syntax match redifFieldQuaternaryEmail /^Quaternary-Email:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
224 syntax match redifFieldQuaternaryFax /^Quaternary-Fax:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryFax contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
225 syntax match redifFieldQuaternaryHomepage /^Quaternary-Homepage:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryHomepage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
226 syntax match redifFieldQuaternaryInstitution /^Quaternary-Institution:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryInstitution contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
227 syntax match redifFieldQuaternaryLocation /^Quaternary-Location:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryLocation contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
228 syntax match redifFieldQuaternaryName /^Quaternary-Name:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryName contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
229 syntax match redifFieldQuaternaryNameEnglish /^Quaternary-Name-English:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryNameEnglish contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
230 syntax match redifFieldQuaternaryPhone /^Quaternary-Phone:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryPhone contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
231 syntax match redifFieldQuaternaryPostal /^Quaternary-Postal:/ skipwhite skipempty nextgroup=redifArgumentQuaternaryPostal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
232 syntax match redifFieldRegisteredDate /^Registered-Date:/ skipwhite skipempty nextgroup=redifArgumentRegisteredDate contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
233 syntax match redifFieldRequires /^Requires:/ skipwhite skipempty nextgroup=redifArgumentRequires contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
234 syntax match redifFieldRestriction /^Restriction:/ skipwhite skipempty nextgroup=redifArgumentRestriction contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
235 syntax match redifFieldRevisionDate /^Revision-Date:/ skipwhite skipempty nextgroup=redifArgumentRevisionDate contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
236 syntax match redifFieldSecondaryDefunct /^Secondary-Defunct:/ skipwhite skipempty nextgroup=redifArgumentSecondaryDefunct contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
237 syntax match redifFieldSecondaryEmail /^Secondary-Email:/ skipwhite skipempty nextgroup=redifArgumentSecondaryEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
238 syntax match redifFieldSecondaryFax /^Secondary-Fax:/ skipwhite skipempty nextgroup=redifArgumentSecondaryFax contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
239 syntax match redifFieldSecondaryHomepage /^Secondary-Homepage:/ skipwhite skipempty nextgroup=redifArgumentSecondaryHomepage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
240 syntax match redifFieldSecondaryInstitution /^Secondary-Institution:/ skipwhite skipempty nextgroup=redifArgumentSecondaryInstitution contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
241 syntax match redifFieldSecondaryLocation /^Secondary-Location:/ skipwhite skipempty nextgroup=redifArgumentSecondaryLocation contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
242 syntax match redifFieldSecondaryName /^Secondary-Name:/ skipwhite skipempty nextgroup=redifArgumentSecondaryName contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
243 syntax match redifFieldSecondaryNameEnglish /^Secondary-Name-English:/ skipwhite skipempty nextgroup=redifArgumentSecondaryNameEnglish contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
244 syntax match redifFieldSecondaryPhone /^Secondary-Phone:/ skipwhite skipempty nextgroup=redifArgumentSecondaryPhone contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
245 syntax match redifFieldSecondaryPostal /^Secondary-Postal:/ skipwhite skipempty nextgroup=redifArgumentSecondaryPostal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
246 syntax match redifFieldSeries /^Series:/ skipwhite skipempty nextgroup=redifArgumentSeries contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
247 syntax match redifFieldShortId /^Short-Id:/ skipwhite skipempty nextgroup=redifArgumentShortId contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
248 syntax match redifFieldSize /^Size:/ skipwhite skipempty nextgroup=redifArgumentSize contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
249 syntax match redifFieldSoftwareHandle /^Software-Handle:/ skipwhite skipempty nextgroup=redifArgumentSoftwareHandle contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
250 syntax match redifFieldTemplateType /^Template-Type:/ skipwhite skipempty nextgroup=redifArgumentTemplateType contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
251 syntax match redifFieldTertiaryDefunct /^Tertiary-Defunct:/ skipwhite skipempty nextgroup=redifArgumentTertiaryDefunct contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
252 syntax match redifFieldTertiaryEmail /^Tertiary-Email:/ skipwhite skipempty nextgroup=redifArgumentTertiaryEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
253 syntax match redifFieldTertiaryFax /^Tertiary-Fax:/ skipwhite skipempty nextgroup=redifArgumentTertiaryFax contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
254 syntax match redifFieldTertiaryHomepage /^Tertiary-Homepage:/ skipwhite skipempty nextgroup=redifArgumentTertiaryHomepage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
255 syntax match redifFieldTertiaryInstitution /^Tertiary-Institution:/ skipwhite skipempty nextgroup=redifArgumentTertiaryInstitution contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
256 syntax match redifFieldTertiaryLocation /^Tertiary-Location:/ skipwhite skipempty nextgroup=redifArgumentTertiaryLocation contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
257 syntax match redifFieldTertiaryName /^Tertiary-Name:/ skipwhite skipempty nextgroup=redifArgumentTertiaryName contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
258 syntax match redifFieldTertiaryNameEnglish /^Tertiary-Name-English:/ skipwhite skipempty nextgroup=redifArgumentTertiaryNameEnglish contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
259 syntax match redifFieldTertiaryPhone /^Tertiary-Phone:/ skipwhite skipempty nextgroup=redifArgumentTertiaryPhone contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
260 syntax match redifFieldTertiaryPostal /^Tertiary-Postal:/ skipwhite skipempty nextgroup=redifArgumentTertiaryPostal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
261 syntax match redifFieldTitle /^Title:/ skipwhite skipempty nextgroup=redifArgumentTitle contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
262 syntax match redifFieldType /^Type:/ skipwhite skipempty nextgroup=redifArgumentType contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
263 syntax match redifFieldURL /^URL:/ skipwhite skipempty nextgroup=redifArgumentURL contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
264 syntax match redifFieldVersion /^Version:/ skipwhite skipempty nextgroup=redifArgumentVersion contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
265 syntax match redifFieldVolume /^Volume:/ skipwhite skipempty nextgroup=redifArgumentVolume contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
266 syntax match redifFieldWorkplaceEmail /^Workplace-Email:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceEmail contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
267 syntax match redifFieldWorkplaceFax /^Workplace-Fax:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceFax contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
268 syntax match redifFieldWorkplaceHomepage /^Workplace-Homepage:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceHomepage contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
269 syntax match redifFieldWorkplaceInstitution /^Workplace-Institution:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceInstitution contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
270 syntax match redifFieldWorkplaceLocation /^Workplace-Location:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceLocation contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
271 syntax match redifFieldWorkplaceName /^Workplace-Name:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceName contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
272 syntax match redifFieldWorkplaceNameEnglish /^Workplace-Name-English:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceNameEnglish contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
273 syntax match redifFieldWorkplaceOrganization /^Workplace-Organization:/ skipwhite skipempty nextgroup=redifArgumentWorkplaceOrganization contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
274 syntax match redifFieldWorkplacePhone /^Workplace-Phone:/ skipwhite skipempty nextgroup=redifArgumentWorkplacePhone contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
275 syntax match redifFieldWorkplacePostal /^Workplace-Postal:/ skipwhite skipempty nextgroup=redifArgumentWorkplacePostal contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
276 syntax match redifFieldYear /^Year:/ skipwhite skipempty nextgroup=redifArgumentYear contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
277
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
278 highlight def link redifFieldAbstract redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
279 highlight def link redifFieldArticleHandle redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
280 highlight def link redifFieldAuthorArticle redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
281 highlight def link redifFieldAuthorBook redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
282 highlight def link redifFieldAuthorChapter redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
283 highlight def link redifFieldAuthorEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
284 highlight def link redifFieldAuthorFax redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
285 highlight def link redifFieldAuthorHomepage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
286 highlight def link redifFieldAuthorName redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
287 highlight def link redifFieldAuthorNameFirst redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
288 highlight def link redifFieldAuthorNameLast redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
289 highlight def link redifFieldAuthorPaper redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
290 highlight def link redifFieldAuthorPerson redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
291 highlight def link redifFieldAuthorPhone redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
292 highlight def link redifFieldAuthorPostal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
293 highlight def link redifFieldAuthorSoftware redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
294 highlight def link redifFieldAuthorWorkplaceEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
295 highlight def link redifFieldAuthorWorkplaceFax redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
296 highlight def link redifFieldAuthorWorkplaceHomepage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
297 highlight def link redifFieldAuthorWorkplaceInstitution redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
298 highlight def link redifFieldAuthorWorkplaceLocation redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
299 highlight def link redifFieldAuthorWorkplaceName redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
300 highlight def link redifFieldAuthorWorkplaceNameEnglish redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
301 highlight def link redifFieldAuthorWorkplacePhone redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
302 highlight def link redifFieldAuthorWorkplacePostal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
303 highlight def link redifFieldAvailability redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
304 highlight def link redifFieldBookHandle redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
305 highlight def link redifFieldBookTitle redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
306 highlight def link redifFieldChapterHandle redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
307 highlight def link redifFieldChapter redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
308 highlight def link redifFieldClassificationJEL redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
309 highlight def link redifFieldContactEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
310 highlight def link redifFieldCreationDate redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
311 highlight def link redifFieldDescription redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
312 highlight def link redifFieldEdition redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
313 highlight def link redifFieldEditorBook redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
314 highlight def link redifFieldEditorEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
315 highlight def link redifFieldEditorFax redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
316 highlight def link redifFieldEditorHomepage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
317 highlight def link redifFieldEditorName redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
318 highlight def link redifFieldEditorNameFirst redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
319 highlight def link redifFieldEditorNameLast redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
320 highlight def link redifFieldEditorPerson redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
321 highlight def link redifFieldEditorPhone redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
322 highlight def link redifFieldEditorPostal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
323 highlight def link redifFieldEditorSeries redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
324 highlight def link redifFieldEditorWorkplaceEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
325 highlight def link redifFieldEditorWorkplaceFax redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
326 highlight def link redifFieldEditorWorkplaceHomepage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
327 highlight def link redifFieldEditorWorkplaceInstitution redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
328 highlight def link redifFieldEditorWorkplaceLocation redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
329 highlight def link redifFieldEditorWorkplaceName redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
330 highlight def link redifFieldEditorWorkplaceNameEnglish redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
331 highlight def link redifFieldEditorWorkplacePhone redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
332 highlight def link redifFieldEditorWorkplacePostal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
333 highlight def link redifFieldEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
334 highlight def link redifFieldFax redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
335 highlight def link redifFieldFileFormat redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
336 highlight def link redifFieldFileFunction redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
337 highlight def link redifFieldFileRestriction redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
338 highlight def link redifFieldFileSize redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
339 highlight def link redifFieldFileURL redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
340 highlight def link redifFieldFollowup redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
341 highlight def link redifFieldHandleOfArchive redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
342 highlight def link redifFieldHandleOfInstitution redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
343 highlight def link redifFieldHandleOfPerson redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
344 highlight def link redifFieldHandleOfSeries redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
345 highlight def link redifFieldHandleOfWork redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
346 highlight def link redifFieldHasChapter redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
347 highlight def link redifFieldHomepage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
348 highlight def link redifFieldInBook redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
349 highlight def link redifFieldISBN redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
350 highlight def link redifFieldISSN redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
351 highlight def link redifFieldIssue redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
352 highlight def link redifFieldJournal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
353 highlight def link redifFieldKeywords redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
354 highlight def link redifFieldKeywords redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
355 highlight def link redifFieldLanguage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
356 highlight def link redifFieldLastLoginDate redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
357 highlight def link redifFieldLength redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
358 highlight def link redifFieldMaintainerEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
359 highlight def link redifFieldMaintainerFax redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
360 highlight def link redifFieldMaintainerName redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
361 highlight def link redifFieldMaintainerPhone redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
362 highlight def link redifFieldMonth redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
363 highlight def link redifFieldNameASCII redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
364 highlight def link redifFieldNameFirst redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
365 highlight def link redifFieldNameFull redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
366 highlight def link redifFieldNameLast redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
367 highlight def link redifFieldNameMiddle redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
368 highlight def link redifFieldNamePrefix redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
369 highlight def link redifFieldNameSuffix redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
370 highlight def link redifFieldName redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
371 highlight def link redifFieldNote redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
372 highlight def link redifFieldNotification redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
373 highlight def link redifFieldNumber redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
374 highlight def link redifFieldOrderEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
375 highlight def link redifFieldOrderHomepage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
376 highlight def link redifFieldOrderPostal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
377 highlight def link redifFieldOrderURL redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
378 highlight def link redifFieldPages redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
379 highlight def link redifFieldPaperHandle redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
380 highlight def link redifFieldPhone redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
381 highlight def link redifFieldPostal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
382 highlight def link redifFieldPredecessor redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
383 highlight def link redifFieldPrice redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
384 highlight def link redifFieldPrimaryDefunct redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
385 highlight def link redifFieldPrimaryEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
386 highlight def link redifFieldPrimaryFax redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
387 highlight def link redifFieldPrimaryHomepage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
388 highlight def link redifFieldPrimaryInstitution redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
389 highlight def link redifFieldPrimaryLocation redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
390 highlight def link redifFieldPrimaryName redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
391 highlight def link redifFieldPrimaryNameEnglish redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
392 highlight def link redifFieldPrimaryPhone redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
393 highlight def link redifFieldPrimaryPostal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
394 highlight def link redifFieldProgrammingLanguage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
395 highlight def link redifFieldProviderEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
396 highlight def link redifFieldProviderFax redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
397 highlight def link redifFieldProviderHomepage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
398 highlight def link redifFieldProviderInstitution redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
399 highlight def link redifFieldProviderLocation redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
400 highlight def link redifFieldProviderName redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
401 highlight def link redifFieldProviderNameEnglish redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
402 highlight def link redifFieldProviderPhone redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
403 highlight def link redifFieldProviderPostal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
404 highlight def link redifFieldPublicationDate redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
405 highlight def link redifFieldPublicationStatus redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
406 highlight def link redifFieldPublicationType redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
407 highlight def link redifFieldPublisherEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
408 highlight def link redifFieldPublisherFax redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
409 highlight def link redifFieldPublisherHomepage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
410 highlight def link redifFieldPublisherInstitution redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
411 highlight def link redifFieldPublisherLocation redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
412 highlight def link redifFieldPublisherName redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
413 highlight def link redifFieldPublisherNameEnglish redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
414 highlight def link redifFieldPublisherPhone redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
415 highlight def link redifFieldPublisherPostal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
416 highlight def link redifFieldQuaternaryEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
417 highlight def link redifFieldQuaternaryFax redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
418 highlight def link redifFieldQuaternaryHomepage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
419 highlight def link redifFieldQuaternaryInstitution redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
420 highlight def link redifFieldQuaternaryLocation redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
421 highlight def link redifFieldQuaternaryName redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
422 highlight def link redifFieldQuaternaryNameEnglish redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
423 highlight def link redifFieldQuaternaryPhone redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
424 highlight def link redifFieldQuaternaryPostal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
425 highlight def link redifFieldRegisteredDate redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
426 highlight def link redifFieldRequires redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
427 highlight def link redifFieldRestriction redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
428 highlight def link redifFieldRevisionDate redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
429 highlight def link redifFieldSecondaryDefunct redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
430 highlight def link redifFieldSecondaryEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
431 highlight def link redifFieldSecondaryFax redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
432 highlight def link redifFieldSecondaryHomepage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
433 highlight def link redifFieldSecondaryInstitution redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
434 highlight def link redifFieldSecondaryLocation redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
435 highlight def link redifFieldSecondaryName redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
436 highlight def link redifFieldSecondaryNameEnglish redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
437 highlight def link redifFieldSecondaryPhone redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
438 highlight def link redifFieldSecondaryPostal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
439 highlight def link redifFieldSeries redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
440 highlight def link redifFieldShortId redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
441 highlight def link redifFieldSize redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
442 highlight def link redifFieldSoftwareHandle redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
443 highlight def link redifFieldTemplateType redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
444 highlight def link redifFieldTertiaryDefunct redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
445 highlight def link redifFieldTertiaryEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
446 highlight def link redifFieldTertiaryFax redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
447 highlight def link redifFieldTertiaryHomepage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
448 highlight def link redifFieldTertiaryInstitution redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
449 highlight def link redifFieldTertiaryLocation redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
450 highlight def link redifFieldTertiaryName redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
451 highlight def link redifFieldTertiaryNameEnglish redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
452 highlight def link redifFieldTertiaryPhone redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
453 highlight def link redifFieldTertiaryPostal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
454 highlight def link redifFieldTitle redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
455 highlight def link redifFieldTitle redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
456 highlight def link redifFieldType redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
457 highlight def link redifFieldURL redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
458 highlight def link redifFieldVersion redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
459 highlight def link redifFieldVolume redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
460 highlight def link redifFieldWorkplaceEmail redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
461 highlight def link redifFieldWorkplaceFax redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
462 highlight def link redifFieldWorkplaceHomepage redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
463 highlight def link redifFieldWorkplaceInstitution redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
464 highlight def link redifFieldWorkplaceLocation redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
465 highlight def link redifFieldWorkplaceName redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
466 highlight def link redifFieldWorkplaceNameEnglish redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
467 highlight def link redifFieldWorkplaceOrganization redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
468 highlight def link redifFieldWorkplacePhone redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
469 highlight def link redifFieldWorkplacePostal redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
470 highlight def link redifFieldYear redifField
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
471
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
472 " Standard arguments
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
473 " Contains all the remaining line if it is not a new field
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
474 " /\%(^\S\{-}:\)\@!\S.*/
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
475 " Note: Those arguments are not highlighted so far. They are here for
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
476 " future extensions.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
477 " Note: Those matches do not extend further the end of the line. They are
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
478 " unfit for arguments that may span several lines like Title, Abstract,
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
479 " Postal. They are well-fit for arguments that must not span more than one
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
480 " line by definition, such as URLs, Email addresses, etc.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
481 " TODO Find more RegEx for these arguments
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
482 " TODO Fax, Phone
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
483 " TODO URL, Homepage
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
484 " TODO Keywords
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
485 " TODO Classification-JEL
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
486 " TODO Short-Id, Author-Person, Editor-Person
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
487 "syntax match redifArgumentAuthorFax /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
488 "syntax match redifArgumentAuthorHomepage /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
489 "syntax match redifArgumentAuthorName /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
490 "syntax match redifArgumentAuthorNameFirst /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
491 "syntax match redifArgumentAuthorNameLast /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
492 "syntax match redifArgumentAuthorPerson /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
493 "syntax match redifArgumentAuthorPhone /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
494 "syntax match redifArgumentAuthorPostal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
495 "syntax match redifArgumentAuthorWorkplaceFax /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
496 "syntax match redifArgumentAuthorWorkplaceHomepage /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
497 "syntax match redifArgumentAuthorWorkplaceLocation /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
498 "syntax match redifArgumentAuthorWorkplaceName /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
499 "syntax match redifArgumentAuthorWorkplaceNameEnglish /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
500 "syntax match redifArgumentAuthorWorkplacePhone /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
501 "syntax match redifArgumentAuthorWorkplacePostal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
502 "syntax match redifArgumentEditorFax /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
503 "syntax match redifArgumentEditorHomepage /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
504 "syntax match redifArgumentEditorName /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
505 "syntax match redifArgumentEditorNameFirst /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
506 "syntax match redifArgumentEditorNameLast /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
507 "syntax match redifArgumentEditorPerson /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
508 "syntax match redifArgumentEditorPhone /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
509 "syntax match redifArgumentEditorPostal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
510 "syntax match redifArgumentEditorWorkplaceFax /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
511 "syntax match redifArgumentEditorWorkplaceHomepage /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
512 "syntax match redifArgumentEditorWorkplaceLocation /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
513 "syntax match redifArgumentEditorWorkplaceName /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
514 "syntax match redifArgumentEditorWorkplaceNameEnglish /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
515 "syntax match redifArgumentEditorWorkplacePhone /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
516 "syntax match redifArgumentEditorWorkplacePostal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
517 "syntax match redifArgumentFax /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
518 "syntax match redifArgumentFileFunction /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
519 "syntax match redifArgumentFileURL /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
520 "syntax match redifArgumentHomepage /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
521 "syntax match redifArgumentIssue /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
522 "syntax match redifArgumentJournal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
523 "syntax match redifArgumentMaintainerFax /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
524 "syntax match redifArgumentMaintainerName /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
525 "syntax match redifArgumentMaintainerPhone /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
526 "syntax match redifArgumentNameFirst /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
527 "syntax match redifArgumentNameFull /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
528 "syntax match redifArgumentNameLast /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
529 "syntax match redifArgumentNameMiddle /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
530 "syntax match redifArgumentNamePrefix /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
531 "syntax match redifArgumentNameSuffix /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
532 "syntax match redifArgumentName /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
533 "syntax match redifArgumentOrderHomepage /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
534 "syntax match redifArgumentOrderPostal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
535 "syntax match redifArgumentOrderURL /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
536 "syntax match redifArgumentPhone /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
537 "syntax match redifArgumentPostal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
538 "syntax match redifArgumentPrice /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
539 "syntax match redifArgumentPrimaryFax /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
540 "syntax match redifArgumentPrimaryHomepage /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
541 "syntax match redifArgumentPrimaryLocation /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
542 "syntax match redifArgumentPrimaryName /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
543 "syntax match redifArgumentPrimaryNameEnglish /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
544 "syntax match redifArgumentPrimaryPhone /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
545 "syntax match redifArgumentPrimaryPostal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
546 "syntax match redifArgumentProviderFax /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
547 "syntax match redifArgumentProviderHomepage /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
548 "syntax match redifArgumentProviderLocation /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
549 "syntax match redifArgumentProviderName /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
550 "syntax match redifArgumentProviderNameEnglish /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
551 "syntax match redifArgumentProviderPhone /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
552 "syntax match redifArgumentProviderPostal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
553 "syntax match redifArgumentPublisherFax /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
554 "syntax match redifArgumentPublisherHomepage /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
555 "syntax match redifArgumentPublisherLocation /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
556 "syntax match redifArgumentPublisherName /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
557 "syntax match redifArgumentPublisherNameEnglish /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
558 "syntax match redifArgumentPublisherPhone /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
559 "syntax match redifArgumentPublisherPostal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
560 "syntax match redifArgumentQuaternaryFax /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
561 "syntax match redifArgumentQuaternaryHomepage /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
562 "syntax match redifArgumentQuaternaryLocation /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
563 "syntax match redifArgumentQuaternaryName /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
564 "syntax match redifArgumentQuaternaryNameEnglish /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
565 "syntax match redifArgumentQuaternaryPhone /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
566 "syntax match redifArgumentQuaternaryPostal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
567 "syntax match redifArgumentRequires /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
568 "syntax match redifArgumentSecondaryFax /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
569 "syntax match redifArgumentSecondaryHomepage /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
570 "syntax match redifArgumentSecondaryLocation /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
571 "syntax match redifArgumentSecondaryName /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
572 "syntax match redifArgumentSecondaryNameEnglish /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
573 "syntax match redifArgumentSecondaryPhone /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
574 "syntax match redifArgumentSecondaryPostal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
575 "syntax match redifArgumentSeries /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
576 "syntax match redifArgumentSize /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
577 "syntax match redifArgumentShortId /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
578 "syntax match redifArgumentTertiaryFax /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
579 "syntax match redifArgumentTertiaryHomepage /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
580 "syntax match redifArgumentTertiaryLocation /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
581 "syntax match redifArgumentTertiaryName /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
582 "syntax match redifArgumentTertiaryNameEnglish /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
583 "syntax match redifArgumentTertiaryPhone /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
584 "syntax match redifArgumentTertiaryPostal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
585 "syntax match redifArgumentURL /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
586 "syntax match redifArgumentVersion /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
587 "syntax match redifArgumentWorkplaceFax /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
588 "syntax match redifArgumentWorkplaceHomepage /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
589 "syntax match redifArgumentWorkplaceLocation /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
590 "syntax match redifArgumentWorkplaceName /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
591 "syntax match redifArgumentWorkplaceNameEnglish /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
592 "syntax match redifArgumentWorkplaceOrganization /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
593 "syntax match redifArgumentWorkplacePhone /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
594 "syntax match redifArgumentWorkplacePostal /\%(^\S\{-}:\)\@!\S.*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
595
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
596 " Special arguments
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
597 " Those arguments require special values
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
598 " TODO Improve some RegEx
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
599 " TODO Improve Emails
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
600 " TODO Improve ISBN
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
601 " TODO Improve ISSN
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
602 " TODO Improve spell check (add words from economics.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
603 " expl=macroeconometrics, Schumpeterian, IS-LM, etc.)
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
604 "
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
605 " Template-Type
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
606 syntax match redifArgumentTemplateType /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectTemplateType contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
607 syntax match redifCorrectTemplateType /ReDIF-\%(Paper\|Article\|Chapter\|Book\|Software\|Archive\|Series\|Institution\|Person\)/ nextgroup=redifTemplateVersionNumber contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
608 syntax match redifTemplateVersionNumber / \d\+\.\d\+/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
609
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
610 highlight def link redifArgumentTemplateType redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
611 highlight def link redifCorrectTemplateType Constant
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
612 highlight def link redifTemplateVersionNumber Number
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
613
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
614 " Handles:
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
615 "
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
616 " Handles of Works:
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
617 syntax match redifArgumentHandleOfWork /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
618 syntax match redifArgumentAuthorArticle /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
619 syntax match redifArgumentAuthorBook /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
620 syntax match redifArgumentAuthorChapter /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
621 syntax match redifArgumentAuthorPaper /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
622 syntax match redifArgumentAuthorSoftware /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
623 syntax match redifArgumentEditorBook /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
624 syntax match redifArgumentEditorSeries /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
625 syntax match redifArgumentInBook /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
626 syntax match redifArgumentHasChapter /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
627 syntax match redifArgumentArticleHandle /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
628 syntax match redifArgumentBookHandle /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
629 syntax match redifArgumentChapterHandle /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
630 syntax match redifArgumentPaperHandle /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
631 syntax match redifArgumentSoftwareHandle /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfWork contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
632 syntax match redifCorrectHandleOfWork /RePEc:\a\a\a:\%(_\@!\w\)\{6}:\S\+/ contains=redifForbiddenCharactersInHandle,redifBestPracticeInHandle contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
633 " TODO Are those characters really forbidden???
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
634 syntax match redifForbiddenCharactersInHandle /[\/*?"<>|]/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
635 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
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
636
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
637 highlight def link redifArgumentHandleOfWork redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
638 highlight def link redifArgumentAuthorArticle redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
639 highlight def link redifArgumentAuthorBook redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
640 highlight def link redifArgumentAuthorChapter redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
641 highlight def link redifArgumentAuthorPaper redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
642 highlight def link redifArgumentAuthorSoftware redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
643 highlight def link redifArgumentEditorBook redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
644 highlight def link redifArgumentEditorSeries redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
645 highlight def link redifArgumentInBook redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
646 highlight def link redifArgumentHasChapter redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
647 highlight def link redifArgumentArticleHandle redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
648 highlight def link redifArgumentBookHandle redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
649 highlight def link redifArgumentChapterHandle redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
650 highlight def link redifArgumentPaperHandle redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
651 highlight def link redifArgumentSoftwareHandle redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
652 highlight def link redifForbiddenCharactersInHandle redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
653 highlight def link redifBestPracticeInHandle redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
654
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
655 " Handles of Series:
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
656 syntax match redifArgumentHandleOfSeries /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfSeries contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
657 syntax match redifArgumentFollowup /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfSeries contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
658 syntax match redifArgumentPredecessor /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfSeries contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
659 syntax match redifCorrectHandleOfSeries /RePEc:\a\a\a:\%(_\@!\w\)\{6}/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
660
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
661 highlight def link redifArgumentHandleOfSeries redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
662 highlight def link redifArgumentFollowup redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
663 highlight def link redifArgumentPredecessor redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
664
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
665 " Handles of Archives:
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
666 syntax match redifArgumentHandleOfArchive /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfArchive contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
667 syntax match redifCorrectHandleOfArchive /RePEc:\a\a\a/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
668
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
669 highlight def link redifArgumentHandleOfArchive redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
670
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
671 " Handles of Person:
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
672 syntax match redifArgumentHandleOfPerson /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfPerson contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
673 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\+/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
674
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
675 highlight def link redifArgumentHandleOfPerson redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
676
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
677 " Handles of Institution:
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
678 syntax match redifArgumentAuthorWorkplaceInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
679 syntax match redifArgumentEditorWorkplaceInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
680 syntax match redifArgumentPrimaryInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
681 syntax match redifArgumentProviderInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
682 syntax match redifArgumentPublisherInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
683 syntax match redifArgumentQuaternaryInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
684 syntax match redifArgumentSecondaryInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
685 syntax match redifArgumentTertiaryInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
686 syntax match redifArgumentWorkplaceInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
687 syntax match redifArgumentHandleOfInstitution /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
688 syntax match redifArgumentPrimaryDefunct /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
689 syntax match redifArgumentSecondaryDefunct /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
690 syntax match redifArgumentTertiaryDefunct /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectHandleOfInstitution contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
691 " TODO Are digits authorized? Apparently not.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
692 " Country codes:
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
693 " http://www.iso.org/iso/country_codes/iso_3166_code_lists/country_names_and_code_elements.htm
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
694 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\)/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
695
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
696 highlight def link redifArgumentHandleOfInstitution redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
697 highlight def link redifArgumentPrimaryDefunct redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
698 highlight def link redifArgumentSecondaryDefunct redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
699 highlight def link redifArgumentTertiaryDefunct redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
700
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
701 " Emails:
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
702 syntax match redifArgumentAuthorEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
703 syntax match redifArgumentAuthorWorkplaceEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
704 syntax match redifArgumentContactEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
705 syntax match redifArgumentEditorEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
706 syntax match redifArgumentEditorWorkplaceEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
707 syntax match redifArgumentEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
708 syntax match redifArgumentMaintainerEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
709 syntax match redifArgumentOrderEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
710 syntax match redifArgumentPrimaryEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
711 syntax match redifArgumentProviderEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
712 syntax match redifArgumentPublisherEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
713 syntax match redifArgumentQuaternaryEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
714 syntax match redifArgumentSecondaryEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
715 syntax match redifArgumentTertiaryEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
716 syntax match redifArgumentWorkplaceEmail /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectEmail contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
717 syntax match redifCorrectEmail /\%(@\@!\S\)\+@\%(@\@!\S\)\+/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
718
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
719 highlight def link redifArgumentAuthorEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
720 highlight def link redifArgumentAuthorWorkplaceEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
721 highlight def link redifArgumentContactEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
722 highlight def link redifArgumentEditorEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
723 highlight def link redifArgumentEditorWorkplaceEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
724 highlight def link redifArgumentEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
725 highlight def link redifArgumentMaintainerEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
726 highlight def link redifArgumentOrderEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
727 highlight def link redifArgumentPrimaryEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
728 highlight def link redifArgumentProviderEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
729 highlight def link redifArgumentPublisherEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
730 highlight def link redifArgumentQuaternaryEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
731 highlight def link redifArgumentSecondaryEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
732 highlight def link redifArgumentTertiaryEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
733 highlight def link redifArgumentWorkplaceEmail redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
734
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
735 " Language
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
736 " Source: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
737 syntax match redifArgumentLanguage /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectLanguage contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
738 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\)\>/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
739
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
740 highlight def link redifArgumentLanguage redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
741 highlight def link redifCorrectLanguage redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
742
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
743 " Length
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
744 " Based on the example in the documentation. But apparently any field is
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
745 " possible
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
746 syntax match redifArgumentLength /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodLength contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
747 syntax match redifGoodLength /1 page\|[1-9]\d*\%( pages\)\=/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
748
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
749 highlight def link redifGoodLength redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
750
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
751 " Publication-Type
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
752 syntax match redifArgumentPublicationType /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectPublicationType contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
753 syntax match redifCorrectPublicationType /\<\(journal article\|book\|book chapter\|working paper\|conference paper\|report\|other\)\>/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
754
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
755 highlight def link redifArgumentPublicationType redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
756 highlight def link redifCorrectPublicationType redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
757
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
758 " Publication-Status
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
759 syntax match redifArgumentPublicationStatus /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectPublicationStatus contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
760 syntax match redifCorrectPublicationStatus /\<\%(published\|forthcoming\)\>.*/ contains=redifSpecialPublicationStatus contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
761 syntax match redifSpecialPublicationStatus /published\|forthcoming/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
762
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
763 highlight def link redifArgumentPublicationStatus redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
764 highlight def link redifSpecialPublicationStatus redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
765
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
766 " Month
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
767 " TODO Are numbers also allowed?
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
768 syntax match redifArgumentMonth /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodMonth contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
769 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
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
770
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
771 highlight def link redifGoodMonth redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
772
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
773 " Integers: Number, Volume, Chapter
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
774 syntax match redifArgumentNumber /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectInteger contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
775 syntax match redifArgumentVolume /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectInteger contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
776 syntax match redifArgumentChapter /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectInteger contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
777 syntax match redifCorrectInteger /[1-9]\d*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
778
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
779 highlight def link redifArgumentVolume redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
780 highlight def link redifArgumentChapter redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
781
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
782 " Year
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
783 syntax match redifArgumentYear /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectYear contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
784 syntax match redifCorrectYear /[1-9]\d\{3}/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
785
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
786 highlight def link redifArgumentYear redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
787
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
788 " Edition
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
789 " Based on the example in the documentation.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
790 syntax match redifArgumentEdition /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodEdition contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
791 syntax match redifGoodEdition /1st\|2nd\|3rd\|[4-9]th\|[1-9]\d*\%(1st\|2nd\|3rd\|[4-9]th\)\|[1-9]\d*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
792
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
793 highlight def link redifGoodEdition redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
794
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
795 " ISBN
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
796 syntax match redifArgumentISBN /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodISBN contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
797 syntax match redifGoodISBN /\d[0-9-]\{8,15}\d/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
798
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
799 highlight def link redifGoodISBN redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
800
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
801 " ISSN
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
802 syntax match redifArgumentISSN /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodISSN contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
803 syntax match redifGoodISSN /\d\{4}-\d\{3}[0-9X]/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
804
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
805 highlight def link redifGoodISSN redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
806
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
807 " File-Size
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
808 " Based on the example in the documentation.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
809 syntax match redifArgumentFileSize /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodSize contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
810 syntax match redifGoodSize /kb\|bytes/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
811
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
812 highlight def link redifGoodSize redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
813
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
814 " Type
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
815 syntax match redifArgumentType /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectType contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
816 syntax match redifCorrectType /ReDIF-Paper\|ReDIF-Software\|ReDIF-Article\|ReDIF-Chapter\|ReDIF-Book/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
817
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
818 highlight def link redifArgumentType redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
819 highlight def link redifCorrectType redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
820
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
821 " Dates: Publication-Date, Creation-Date, Revision-Date,
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
822 " Last-Login-Date, Registration-Date
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
823 syntax match redifArgumentCreationDate /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectDate contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
824 syntax match redifArgumentLastLoginDate /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectDate contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
825 syntax match redifArgumentPublicationDate /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectDate contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
826 syntax match redifArgumentRegisteredDate /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectDate contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
827 syntax match redifArgumentRevisionDate /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectDate contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
828 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]\)\=\)\=/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
829
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
830 highlight def link redifArgumentCreationDate redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
831 highlight def link redifArgumentLastLoginDate redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
832 highlight def link redifArgumentPublicationDate redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
833 highlight def link redifArgumentRegisteredDate redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
834 highlight def link redifArgumentRevisionDate redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
835
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
836 " Classification-JEL
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
837 syntax match redifArgumentClassificationJEL /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectJEL contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
838 syntax match redifCorrectJEL /\<\u\d\{,2}\%([,; \t]\s*\)\=/ contains=redifSpecialJEL contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
839 syntax match redifSpecialJEL /\<\u\d\{,2}/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
840
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
841 highlight def link redifArgumentClassificationJEL redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
842 highlight def link redifSpecialJEL redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
843
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
844 " Pages
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
845 syntax match redifArgumentPages /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectPages contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
846 syntax match redifCorrectPages /[1-9]\d*-[1-9]\d*/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
847
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
848 highlight def link redifArgumentPages redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
849
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
850 " Name-ASCII
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
851 syntax match redifArgumentNameASCII /\%(^\S\{-}:\)\@!\S.*/ contains=redifCorrectNameASCII contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
852 syntax match redifCorrectNameASCII /[ -~]/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
853
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
854 highlight def link redifArgumentNameASCII redifError
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
855
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
856 " Programming-Language
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
857 syntax match redifArgumentProgrammingLanguage /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodProgrammingLanguage contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
858 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\)\>/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
859
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
860 highlight def link redifGoodProgrammingLanguage redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
861
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
862 " File-Format
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
863 " TODO The link in the documentation that gives the list of possible formats is broken.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
864 " ftp://ftp.isi.edu/in-notes/iana/assignments/media-types/media-types
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
865 " These are based on the examples in the documentation.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
866 syntax match redifArgumentFileFormat /\%(^\S\{-}:\)\@!\S.*/ contains=redifGoodFormat contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
867 syntax match redifGoodFormat /application\/pdf\|application\/postscript\|text\/html\|text\/plain/ contained display
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
868
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
869 highlight def link redifGoodFormat redifSpecial
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
870
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
871 " Spell-checked arguments
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
872 " Very useful when copy-pasting abstracts that may contain hyphens or
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
873 " ligatures.
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
874 syntax region redifArgumentAbstract start=/\%(^\S\{-}:\)\@!\S.*/ end=/^\S\{-}:/me=s-1 contains=@Spell contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
875 syntax region redifArgumentAvailability start=/\%(^\S\{-}:\)\@!\S.*/ end=/^\S\{-}:/me=s-1 contains=@Spell contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
876 syntax region redifArgumentBookTitle start=/\%(^\S\{-}:\)\@!\S.*/ end=/^\S\{-}:/me=s-1 contains=@Spell contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
877 syntax region redifArgumentDescription start=/\%(^\S\{-}:\)\@!\S.*/ end=/^\S\{-}:/me=s-1 contains=@Spell contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
878 syntax region redifArgumentFileRestriction start=/\%(^\S\{-}:\)\@!\S.*/ end=/^\S\{-}:/me=s-1 contains=@Spell contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
879 syntax region redifArgumentKeywords start=/\%(^\S\{-}:\)\@!\S.*/ end=/^\S\{-}:/me=s-1 contains=@Spell contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
880 syntax region redifArgumentNote start=/\%(^\S\{-}:\)\@!\S.*/ end=/^\S\{-}:/me=s-1 contains=@Spell contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
881 syntax region redifArgumentNotification start=/\%(^\S\{-}:\)\@!\S.*/ end=/^\S\{-}:/me=s-1 contains=@Spell contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
882 syntax region redifArgumentRestriction start=/\%(^\S\{-}:\)\@!\S.*/ end=/^\S\{-}:/me=s-1 contains=@Spell contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
883 syntax region redifArgumentTitle start=/\%(^\S\{-}:\)\@!\S.*/ end=/^\S\{-}:/me=s-1 contains=@Spell contained
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
884
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
885 " Final highlight
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
886 highlight def link redifComment Comment
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
887 highlight def link redifError Error
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
888 highlight def link redifField Identifier
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
889 highlight def link redifSpecial Special
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
890
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
891 " Set "b:current_syntax" to the name of the syntax at the end:
a079ef0ce001 Move redif syntax file to the right directory.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
892 let b:current_syntax="redif"