" Vim syntax file " Language: GrADS scripting language set shiftwidth=4 set tabstop=4 set expandtab "I use 'say' alot in debugging, the next two lines make in DarkGreen syn keyword gradsWords say hi gradsWords guifg=DarkGreen ctermfg=DarkGreen gui=bold "Uncomment this next line to show tabs as ^I. Tabs are illegal in grads scripts "set list "comments and strings (the two essential highlights): syn match Comment /^\*.*/ syn region String start=/"/ skip=/\\"/ end=/"/ syn region String start=/'/ skip=/\\'/ end=/'/ hi String guifg=Red ctermfg=Red "changes default highlight let b:current_syntax="grads"