" Kind: Setup file for the editor "Vim" - "syntax file" " Language: DYLAN - DYnamic LANguage - *.intr files (melange) " Maintainer: Justus Pendleton " Last change: 981209 " URL: http://www.??? syn clear syn case ignore syn region intrInfo matchgroup=Statement start="^" end=":" oneline syn match intrInterface "define interface" syn match intrClass "<.*>" syn region intrType start=+"+ skip=+\\\\\|\\"+ end=+"+ syn region intrIncluded contained start=+"+ skip=+\\\\\|\\"+ end=+"+ syn match intrIncluded contained "<[^>]*>" syn match intrInclude "^\s*#\s*include\>\s*["<]" contains=intrIncluded "syn keyword intrMods pointer struct if !exists("did_dylan_intr_syntax_inits") let did_dylan_intr_syntax_inits = 1 hi link intrInfo Special hi link intrInterface Operator hi link intrMods Type hi link intrClass StorageClass hi link intrType Type hi link intrIncluded String hi link intrInclude Include endif let b:current_syntax = "dylan-intr" " vim:ts=15