comparison runtime/syntax/maxima.vim @ 2034:7bc41231fbc7

Update runtime files.
author Bram Moolenaar <bram@zimbu.org>
date Wed, 06 Jan 2010 20:54:52 +0100
parents 6675076019ae
children 43efa4f5a8ea
comparison
equal deleted inserted replaced
2033:de5a43c5eedc 2034:7bc41231fbc7
225 syn match maximaFloat /\<\d\+[BbDdEeSs][-+]\=\d\+\>/ 225 syn match maximaFloat /\<\d\+[BbDdEeSs][-+]\=\d\+\>/
226 226
227 " Comments: 227 " Comments:
228 " maxima supports /* ... */ (like C) 228 " maxima supports /* ... */ (like C)
229 syn keyword maximaTodo contained TODO Todo DEBUG 229 syn keyword maximaTodo contained TODO Todo DEBUG
230 syn region maximaCommentBlock start="/\*" end="\*/" contains=maximaString,maximaTodo 230 syn region maximaCommentBlock start="/\*" end="\*/" contains=maximaString,maximaTodo,maximaCommentBlock
231 231
232 " synchronizing 232 " synchronizing
233 syn sync match maximaSyncComment grouphere maximaCommentBlock "/*" 233 syn sync match maximaSyncComment grouphere maximaCommentBlock "/*"
234 syn sync match maximaSyncComment groupthere NONE "*/" 234 syn sync match maximaSyncComment groupthere NONE "*/"
235 235