123456789101112131415161718192021222324252627282930313233343536373839 |
- " Vim syntax file
- " Language: eSpeak Dictionary List Files
- " Filenames: *_list, *_listx, *_extra, *_emoji
- " Maintainer: Reece H. Dunn <[email protected]>
- " Last Change: 2017 Jun 3
-
- " Quit when a (custom) syntax file was already loaded
- if exists("b:current_syntax")
- finish
- endif
-
- syn region espeaklistLineComment start="^//" end="$" keepend contains=espeaklistComment
- syn match espeaklistLinePhraseEntry "^\(\(//\)\@!\)(.*$" contains=espeaklistEntryPhrase
- syn match espeaklistLineEntry "^\(\(//\)\@!\)[^?(].*$" contains=espeaklistEntryWord
- syn match espeaklistLineConditionalEntry "^[?!].*$" contains=espeaklistEntryConditional
- syn match espeaklistLineFlagEntry "^\$.*$" contains=espeaklistFlag
-
- syn region espeaklistComment contained start="//" end="$" keepend contains=@Spell
-
- syn region espeaklistFlag contained start="\$" end="[ \t\r\n]" skipwhite nextgroup=espeaklistFlag,espeaklistComment
-
- syn region espeaklistEntryConditional contained start="^[?!]" end="[ \t]" skipwhite nextgroup=espeaklistEntryPhrase,espeaklistEntryWord
- syn region espeaklistEntryPhrase contained start="(" end=")" skipwhite nextgroup=espeaklistEntryPronunciation,espeaklistFlag
- syn match espeaklistEntryWord contained "[^ \t\r\n()]\+" skipwhite nextgroup=espeaklistEntryPronunciation,espeaklistFlag
- syn match espeaklistEntryPronunciation contained "[^$/]*" skipwhite nextgroup=espeaklistFlag,espeaklistComment
-
- " Define the default highlighting.
- " Only used when an item doesn't have highlighting yet
-
- hi def link espeaklistComment Comment
- hi def link espeaklistFlag PreProc
- hi def link espeaklistEntryConditional PreProc
- hi def link espeaklistEntryPhrase espeaklistEntry
- hi def link espeaklistEntryWord espeaklistEntry
- hi def link espeaklistEntryPronunciation None
- hi def link espeaklistEntry Identifier
-
- let b:current_syntax = "espeaklist"
- " vim: ts=8
|