1" Vim syntax file 2" Language: Dylan Library Interface Files 3" Authors: Justus Pendleton <[email protected]> 4" Brent Fulgham <[email protected]> 5" Last Change: Fri Sep 29 13:50:20 PDT 2000 6" 7 8" quit when a syntax file was already loaded 9if exists("b:current_syntax") 10 finish 11endif 12 13syn case ignore 14 15syn region dylanlidInfo matchgroup=Statement start="^" end=":" oneline 16syn region dylanlidEntry matchgroup=Statement start=":%" end="$" oneline 17 18syn sync lines=50 19 20" Define the default highlighting. 21" Only when an item doesn't have highlighting yet 22 23hi def link dylanlidInfo Type 24hi def link dylanlidEntry String 25 26 27let b:current_syntax = "dylanlid" 28 29" vim:ts=8 30