add support for pyrex

This commit is contained in:
Martin Grenfell 2008-04-17 23:18:00 +12:00
parent f95255e299
commit f8ce318000
2 changed files with 5 additions and 0 deletions

@ -863,6 +863,8 @@ to get illegal syntax when uncommenting them.
2.x.x 2.x.x
- added support for rib files, thanks to spookypeanut for posting the - added support for rib files, thanks to spookypeanut for posting the
issue. issue.
- added support for pyrex/cython, thanks to Greg Jandl for posting the
issue.
2.1.12 2.1.12
- added support for patran and dakota, thx to Jacobo Diaz for the email - added support for patran and dakota, thx to Jacobo Diaz for the email
@ -1227,3 +1229,4 @@ Jacobo Diaz dakota, patran
Li Jin gentoo-env-d, gentoo-init-d, Li Jin gentoo-env-d, gentoo-init-d,
gentoo-make-conf, grub, modconf, sudoers gentoo-make-conf, grub, modconf, sudoers
SpookeyPeanut rib SpookeyPeanut rib
Greg Jandl pyrex/cython

@ -608,6 +608,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
call s:MapDelimiters('#', '') call s:MapDelimiters('#', '')
elseif a:filetype == "ptcap" elseif a:filetype == "ptcap"
call s:MapDelimiters('#', '') call s:MapDelimiters('#', '')
elseif a:filetype == "pyrex"
call s:MapDelimiters('#','')
elseif a:filetype == "python" elseif a:filetype == "python"
call s:MapDelimiters('#','') call s:MapDelimiters('#','')
elseif a:filetype == "qf" elseif a:filetype == "qf"