model.vim (1528B)
1 " Vim syntax file 2 " Language: Model 3 " Maintainer: The Vim Project <https://github.com/vim/vim> 4 " Last Change: 2023 Aug 10 5 " Former Maintainer: Bram Moolenaar <Bram@vim.org> 6 7 " very basic things only (based on the vgrindefs file). 8 " If you use this language, please improve it, and send patches! 9 10 " Quit when a (custom) syntax file was already loaded 11 if exists("b:current_syntax") 12 finish 13 endif 14 15 " A bunch of keywords 16 syn keyword modelKeyword abs and array boolean by case cdnl char copied dispose 17 syn keyword modelKeyword div do dynamic else elsif end entry external FALSE false 18 syn keyword modelKeyword fi file for formal fortran global if iff ift in integer include 19 syn keyword modelKeyword inline is lbnd max min mod new NIL nil noresult not notin od of 20 syn keyword modelKeyword or procedure public read readln readonly record recursive rem rep 21 syn keyword modelKeyword repeat res result return set space string subscript such then TRUE 22 syn keyword modelKeyword true type ubnd union until varies while width 23 24 " Special keywords 25 syn keyword modelBlock beginproc endproc 26 27 " Comments 28 syn region modelComment start="\$" end="\$" end="$" 29 30 " Strings 31 syn region modelString start=+"+ end=+"+ 32 33 " Character constant (is this right?) 34 syn match modelString "'." 35 36 " Define the default highlighting. 37 " Only used when an item doesn't have highlighting yet 38 hi def link modelKeyword Statement 39 hi def link modelBlock PreProc 40 hi def link modelComment Comment 41 hi def link modelString String 42 43 let b:current_syntax = "model" 44 45 " vim: ts=8 sw=2