" Kind: Setup file for the editor "Vim" - "syntax file" " Language: DYLAN - DYnamic LANguage - *.lid files " Maintainer: Justus Pendleton " Last change: 981209 " URL: http://www.??? syn clear syn case ignore syn region lidInfo matchgroup=Statement start="^" end=":" oneline syn region lidEntry matchgroup=Statement start=":%" end="$" oneline syn sync lines=50 if !exists("did_dylan_lid_syntax_inits") let did_dylan_lid_syntax_inits = 1 hi link lidInfo Type hi link lidEntry String endif let b:current_syntax = "dylan-lid" " vim:ts=15