PATH:
usr
/
share
/
vim
/
vim74
/
syntax
" Language: TT2 (Perl Template Toolkit) " Maintainer: vim-perl <vim-perl@googlegroups.com> " Author: Moriki, Atsushi <4woods+vim@gmail.com> " Homepage: http://github.com/vim-perl/vim-perl " Bugs/requests: http://github.com/vim-perl/vim-perl/issues " Last Change: 2013-07-21 " " Instration: " put tt2.vim and tt2html.vim in to your syntax diretory. " " add below in your filetype.vim. " au BufNewFile,BufRead *.tt2 setf tt2 " or " au BufNewFile,BufRead *.tt2 " \ if ( getline(1) . getline(2) . getline(3) =~ '<\chtml' | " \ && getline(1) . getline(2) . getline(3) !~ '<[%?]' ) | " \ || getline(1) =~ '<!DOCTYPE HTML' | " \ setf tt2html | " \ else | " \ setf tt2 | " \ endif " " define START_TAG, END_TAG " "ASP" " :let b:tt2_syn_tags = '<% %>' " "PHP" " :let b:tt2_syn_tags = '<? ?>' " "TT2 and HTML" " :let b:tt2_syn_tags = '\[% %] <!-- -->' " " Changes: " 0.1.3 " Changed fileformat from 'dos' to 'unix' " Deleted 'echo' that print obstructive message " 0.1.2 " Added block comment syntax " e.g. [%# COMMENT " COMMENT TOO %] " [%# IT'S SAFE %] HERE IS OUTSIDE OF TT2 DIRECTIVE " [% # WRONG!! %] HERE STILL BE COMMENT " 0.1.1 " Release " 0.1.0 " Internal " " License: follow Vim :help uganda " if !exists("b:tt2_syn_tags") let b:tt2_syn_tags = '\[% %]' "let b:tt2_syn_tags = '\[% %] \[\* \*]' endif if !exists("b:tt2_syn_inc_perl") let b:tt2_syn_inc_perl = 1 endif if exists("b:current_syntax") finish endif let s:cpo_save = &cpo set cpo&vim syn case match syn cluster tt2_top_cluster contains=tt2_perlcode,tt2_tag_region " TT2 TAG Region if exists("b:tt2_syn_tags") let s:str = b:tt2_syn_tags . ' ' let s:str = substitute(s:str,'^ \+','','g') let s:str = substitute(s:str,' \+',' ','g') while stridx(s:str,' ') > 0 let s:st = strpart(s:str,0,stridx(s:str,' ')) let s:str = substitute(s:str,'[^ ]* ','',"") let s:ed = strpart(s:str,0,stridx(s:str,' ')) let s:str = substitute(s:str,'[^ ]* ','',"") exec 'syn region tt2_tag_region '. \ 'matchgroup=tt2_tag '. \ 'start=+\(' . s:st .'\)[-]\=+ '. \ 'end=+[-]\=\(' . s:ed . '\)+ '. \ 'contains=@tt2_statement_cluster keepend extend' exec 'syn region tt2_commentblock_region '. \ 'matchgroup=tt2_tag '. \ 'start=+\(' . s:st .'\)[-]\=\(#\)\@=+ '. \ 'end=+[-]\=\(' . s:ed . '\)+ '. \ 'keepend extend' "Include Perl syntax when 'PERL' 'RAWPERL' block if b:tt2_syn_inc_perl syn include @Perl $VIMRUNTIME/syntax/perl.vim exec 'syn region tt2_perlcode '. \ 'start=+\(\(RAW\)\=PERL\s*[-]\=' . s:ed . '\(\n\)\=\)\@<=+ ' . \ 'end=+' . s:st . '[-]\=\s*END+me=s-1 contains=@Perl keepend' endif "echo 'TAGS ' . s:st . ' ' . s:ed unlet s:st unlet s:ed endwhile else syn region tt2_tag_region \ matchgroup=tt2_tag \ start=+\(\[%\)[-]\=+ \ end=+[-]\=%\]+ \ contains=@tt2_statement_cluster keepend extend syn region tt2_commentblock_region \ matchgroup=tt2_tag \ start=+\(\[%\)[-]\=#+ \ end=+[-]\=%\]+ \ keepend extend "Include Perl syntax when 'PERL' 'RAWPERL' block if b:tt2_syn_inc_perl syn include @Perl $VIMRUNTIME/syntax/perl.vim syn region tt2_perlcode \ start=+\(\(RAW\)\=PERL\s*[-]\=%]\(\n\)\=\)\@<=+ \ end=+\[%[-]\=\s*END+me=s-1 \ contains=@Perl keepend endif endif " Directive syn keyword tt2_directive contained \ GET CALL SET DEFAULT DEBUG \ LAST NEXT BREAK STOP BLOCK \ IF IN UNLESS ELSIF FOR FOREACH WHILE SWITCH CASE \ USE PLUGIN MACRO META \ TRY FINAL RETURN LAST \ CLEAR TO STEP AND OR NOT MOD DIV \ ELSE PERL RAWPERL END syn match tt2_directive +|+ contained syn keyword tt2_directive contained nextgroup=tt2_string_q,tt2_string_qq,tt2_blockname skipwhite skipempty \ INSERT INCLUDE PROCESS WRAPPER FILTER \ THROW CATCH syn keyword tt2_directive contained nextgroup=tt2_def_tag skipwhite skipempty \ TAGS syn match tt2_def_tag "\S\+\s\+\S\+\|\<\w\+\>" contained syn match tt2_variable +\I\w*+ contained syn match tt2_operator "[+*/%:?-]" contained syn match tt2_operator "\<\(mod\|div\|or\|and\|not\)\>" contained syn match tt2_operator "[!=<>]=\=\|&&\|||" contained syn match tt2_operator "\(\s\)\@<=_\(\s\)\@=" contained syn match tt2_operator "=>\|," contained syn match tt2_deref "\([[:alnum:]_)\]}]\s*\)\@<=\." contained syn match tt2_comment +#.*$+ contained extend syn match tt2_func +\<\I\w*\(\s*(\)\@=+ contained nextgroup=tt2_bracket_r skipempty skipwhite " syn region tt2_bracket_r start=+(+ end=+)+ contained contains=@tt2_statement_cluster keepend extend syn region tt2_bracket_b start=+\[+ end=+]+ contained contains=@tt2_statement_cluster keepend extend syn region tt2_bracket_b start=+{+ end=+}+ contained contains=@tt2_statement_cluster keepend extend syn region tt2_string_qq start=+"+ end=+"+ skip=+\\"+ contained contains=tt2_ivariable keepend extend syn region tt2_string_q start=+'+ end=+'+ skip=+\\'+ contained keepend extend syn match tt2_ivariable +\$\I\w*\>\(\.\I\w*\>\)*+ contained syn match tt2_ivariable +\${\I\w*\>\(\.\I\w*\>\)*}+ contained syn match tt2_number "\d\+" contained syn match tt2_number "\d\+\.\d\+" contained syn match tt2_number "0x\x\+" contained syn match tt2_number "0\o\+" contained syn match tt2_blockname "\f\+" contained nextgroup=tt2_blockname_joint skipwhite skipempty syn match tt2_blockname "$\w\+" contained contains=tt2_ivariable nextgroup=tt2_blockname_joint skipwhite skipempty syn region tt2_blockname start=+"+ end=+"+ skip=+\\"+ contained contains=tt2_ivariable nextgroup=tt2_blockname_joint keepend skipwhite skipempty syn region tt2_blockname start=+'+ end=+'+ skip=+\\'+ contained nextgroup=tt2_blockname_joint keepend skipwhite skipempty syn match tt2_blockname_joint "+" contained nextgroup=tt2_blockname skipwhite skipempty syn cluster tt2_statement_cluster contains=tt2_directive,tt2_variable,tt2_operator,tt2_string_q,tt2_string_qq,tt2_deref,tt2_comment,tt2_func,tt2_bracket_b,tt2_bracket_r,tt2_number " Synchronizing syn sync minlines=50 hi def link tt2_tag Type hi def link tt2_tag_region Type hi def link tt2_commentblock_region Comment hi def link tt2_directive Statement hi def link tt2_variable Identifier hi def link tt2_ivariable Identifier hi def link tt2_operator Statement hi def link tt2_string_qq String hi def link tt2_string_q String hi def link tt2_blockname String hi def link tt2_comment Comment hi def link tt2_func Function hi def link tt2_number Number if exists("b:tt2_syn_tags") unlet b:tt2_syn_tags endif let b:current_syntax = "tt2" let &cpo = s:cpo_save unlet s:cpo_save " vim:ts=4:sw=4
[+]
..
[-] basic.vim
[edit]
[-] rpl.vim
[edit]
[-] tar.vim
[edit]
[-] htmlos.vim
[edit]
[-] denyhosts.vim
[edit]
[-] spice.vim
[edit]
[-] modula2.vim
[edit]
[-] bzr.vim
[edit]
[-] zimbu.vim
[edit]
[-] nanorc.vim
[edit]
[-] doxygen.vim
[edit]
[-] lynx.vim
[edit]
[-] bib.vim
[edit]
[-] hgcommit.vim
[edit]
[-] vera.vim
[edit]
[-] cvs.vim
[edit]
[-] c.vim
[edit]
[-] pf.vim
[edit]
[-] tt2html.vim
[edit]
[-] group.vim
[edit]
[-] muttrc.vim
[edit]
[-] svn.vim
[edit]
[-] make.vim
[edit]
[-] aspvbs.vim
[edit]
[-] sml.vim
[edit]
[-] sl.vim
[edit]
[-] trustees.vim
[edit]
[-] rnc.vim
[edit]
[-] uil.vim
[edit]
[-] rebol.vim
[edit]
[-] aflex.vim
[edit]
[-] protocols.vim
[edit]
[-] logtalk.vim
[edit]
[-] django.vim
[edit]
[-] postscr.vim
[edit]
[-] atlas.vim
[edit]
[-] nastran.vim
[edit]
[-] gitrebase.vim
[edit]
[-] xquery.vim
[edit]
[-] eruby.vim
[edit]
[-] udevrules.vim
[edit]
[-] abc.vim
[edit]
[-] litestep.vim
[edit]
[-] xs.vim
[edit]
[-] haste.vim
[edit]
[-] ada.vim
[edit]
[-] gnuplot.vim
[edit]
[-] conaryrecipe.vim
[edit]
[-] jargon.vim
[edit]
[-] wsml.vim
[edit]
[-] icemenu.vim
[edit]
[-] r.vim
[edit]
[-] tags.vim
[edit]
[-] sql.vim
[edit]
[-] asteriskvm.vim
[edit]
[-] omnimark.vim
[edit]
[-] groovy.vim
[edit]
[-] cweb.vim
[edit]
[-] dylanintr.vim
[edit]
[-] liquid.vim
[edit]
[-] mplayerconf.vim
[edit]
[-] ctrlh.vim
[edit]
[-] abap.vim
[edit]
[-] uc.vim
[edit]
[-] groff.vim
[edit]
[-] mrxvtrc.vim
[edit]
[-] plp.vim
[edit]
[-] openroad.vim
[edit]
[-] xsd.vim
[edit]
[-] coco.vim
[edit]
[-] desc.vim
[edit]
[-] quake.vim
[edit]
[-] gnash.vim
[edit]
[-] esmtprc.vim
[edit]
[-] tex.vim
[edit]
[-] xdefaults.vim
[edit]
[-] foxpro.vim
[edit]
[-] asterisk.vim
[edit]
[-] povini.vim
[edit]
[-] aap.vim
[edit]
[-] mel.vim
[edit]
[-] matlab.vim
[edit]
[-] cdrtoc.vim
[edit]
[-] htmlm4.vim
[edit]
[-] ldif.vim
[edit]
[-] kconfig.vim
[edit]
[-] bdf.vim
[edit]
[-] mma.vim
[edit]
[-] ishd.vim
[edit]
[-] dcd.vim
[edit]
[-] dot.vim
[edit]
[-] lss.vim
[edit]
[-] gsp.vim
[edit]
[-] lotos.vim
[edit]
[-] gtkrc.vim
[edit]
[-] calendar.vim
[edit]
[-] gpg.vim
[edit]
[-] gitcommit.vim
[edit]
[-] slrnsc.vim
[edit]
[-] cvsrc.vim
[edit]
[-] sas.vim
[edit]
[-] tidy.vim
[edit]
[-] libao.vim
[edit]
[-] masm.vim
[edit]
[-] asmh8300.vim
[edit]
[-] b.vim
[edit]
[-] asn.vim
[edit]
[-] model.vim
[edit]
[-] manual.vim
[edit]
[-] htmlcheetah.vim
[edit]
[-] redif.vim
[edit]
[-] webmacro.vim
[edit]
[-] sm.vim
[edit]
[-] nqc.vim
[edit]
[-] form.vim
[edit]
[-] qf.vim
[edit]
[-] exim.vim
[edit]
[-] cs.vim
[edit]
[-] dtd.vim
[edit]
[-] nosyntax.vim
[edit]
[-] docbksgml.vim
[edit]
[-] python.vim
[edit]
[-] svg.vim
[edit]
[-] mush.vim
[edit]
[-] wget.vim
[edit]
[-] tssop.vim
[edit]
[-] csp.vim
[edit]
[-] changelog.vim
[edit]
[-] sshconfig.vim
[edit]
[-] man.vim
[edit]
[-] snnsnet.vim
[edit]
[-] screen.vim
[edit]
[-] xmodmap.vim
[edit]
[-] treetop.vim
[edit]
[-] tcsh.vim
[edit]
[-] mason.vim
[edit]
[-] ipfilter.vim
[edit]
[-] setserial.vim
[edit]
[-] elinks.vim
[edit]
[-] z8a.vim
[edit]
[-] clipper.vim
[edit]
[-] stata.vim
[edit]
[-] xhtml.vim
[edit]
[-] dircolors.vim
[edit]
[-] sqr.vim
[edit]
[-] sqlanywhere.vim
[edit]
[-] manconf.vim
[edit]
[-] tpp.vim
[edit]
[-] passwd.vim
[edit]
[-] registry.vim
[edit]
[-] idl.vim
[edit]
[-] syntax.vim
[edit]
[-] dts.vim
[edit]
[-] sqloracle.vim
[edit]
[-] master.vim
[edit]
[-] change.vim
[edit]
[-] usw2kagtlog.vim
[edit]
[-] gitsendemail.vim
[edit]
[-] vmasm.vim
[edit]
[-] ldapconf.vim
[edit]
[-] perl6.vim
[edit]
[-] blank.vim
[edit]
[-] hog.vim
[edit]
[-] cl.vim
[edit]
[-] dosini.vim
[edit]
[-] named.vim
[edit]
[-] idlang.vim
[edit]
[-] cucumber.vim
[edit]
[-] chordpro.vim
[edit]
[-] edif.vim
[edit]
[-] whitespace.vim
[edit]
[-] modula3.vim
[edit]
[-] hamster.vim
[edit]
[-] tssgm.vim
[edit]
[-] hastepreproc.vim
[edit]
[-] cynlib.vim
[edit]
[-] proto.vim
[edit]
[-] verilog.vim
[edit]
[-] rhelp.vim
[edit]
[-] rnoweb.vim
[edit]
[-] sinda.vim
[edit]
[-] java.vim
[edit]
[-] plm.vim
[edit]
[-] focexec.vim
[edit]
[-] pov.vim
[edit]
[-] rc.vim
[edit]
[-] takcmp.vim
[edit]
[-] asm68k.vim
[edit]
[-] cuda.vim
[edit]
[-] mgl.vim
[edit]
[-] reva.vim
[edit]
[-] README.txt
[edit]
[-] esterel.vim
[edit]
[-] freebasic.vim
[edit]
[-] lilo.vim
[edit]
[-] crm.vim
[edit]
[-] vsejcl.vim
[edit]
[-] xbl.vim
[edit]
[-] ncf.vim
[edit]
[-] pike.vim
[edit]
[-] dylanlid.vim
[edit]
[-] d.vim
[edit]
[-] loginaccess.vim
[edit]
[-] tf.vim
[edit]
[-] dcl.vim
[edit]
[-] tak.vim
[edit]
[-] ibasic.vim
[edit]
[-] crontab.vim
[edit]
[-] sqlinformix.vim
[edit]
[-] papp.vim
[edit]
[-] cynpp.vim
[edit]
[-] updatedb.vim
[edit]
[-] tads.vim
[edit]
[-] pli.vim
[edit]
[-] gitconfig.vim
[edit]
[-] lout.vim
[edit]
[-] scss.vim
[edit]
[-] cupl.vim
[edit]
[-] gkrellmrc.vim
[edit]
[-] pamconf.vim
[edit]
[-] slpconf.vim
[edit]
[-] ninja.vim
[edit]
[-] cmake.vim
[edit]
[-] tcl.vim
[edit]
[-] plaintex.vim
[edit]
[-] flexwiki.vim
[edit]
[-] smcl.vim
[edit]
[-] samba.vim
[edit]
[-] art.vim
[edit]
[-] fdcc.vim
[edit]
[-] winbatch.vim
[edit]
[-] sisu.vim
[edit]
[-] synload.vim
[edit]
[-] jess.vim
[edit]
[-] nsis.vim
[edit]
[-] desktop.vim
[edit]
[-] splint.vim
[edit]
[-] yaml.vim
[edit]
[-] zsh.vim
[edit]
[-] csdl.vim
[edit]
[-] pascal.vim
[edit]
[-] specman.vim
[edit]
[-] cmusrc.vim
[edit]
[-] jovial.vim
[edit]
[-] kscript.vim
[edit]
[-] objc.vim
[edit]
[-] pyrex.vim
[edit]
[-] privoxy.vim
[edit]
[-] sd.vim
[edit]
[-] eviews.vim
[edit]
[-] jal.vim
[edit]
[-] chill.vim
[edit]
[-] lpc.vim
[edit]
[-] sindacmp.vim
[edit]
[-] lprolog.vim
[edit]
[-] services.vim
[edit]
[-] purifylog.vim
[edit]
[-] syncolor.vim
[edit]
[-] occam.vim
[edit]
[-] dracula.vim
[edit]
[-] initex.vim
[edit]
[-] automake.vim
[edit]
[-] voscm.vim
[edit]
[-] dirpager.vim
[edit]
[-] xml.vim
[edit]
[-] slrnrc.vim
[edit]
[-] fortran.vim
[edit]
[-] wml.vim
[edit]
[-] lite.vim
[edit]
[-] hex.vim
[edit]
[-] sysctl.vim
[edit]
[-] aptconf.vim
[edit]
[-] spup.vim
[edit]
[-] dnsmasq.vim
[edit]
[-] xslt.vim
[edit]
[-] help.vim
[edit]
[-] pfmain.vim
[edit]
[-] netrc.vim
[edit]
[-] messages.vim
[edit]
[-] sgmllnx.vim
[edit]
[-] po.vim
[edit]
[-] fvwm2m4.vim
[edit]
[-] grub.vim
[edit]
[-] eiffel.vim
[edit]
[-] mallard.vim
[edit]
[-] rexx.vim
[edit]
[-] a65.vim
[edit]
[-] diva.vim
[edit]
[-] fasm.vim
[edit]
[-] csc.vim
[edit]
[-] cabal.vim
[edit]
[-] yacc.vim
[edit]
[-] ch.vim
[edit]
[-] fgl.vim
[edit]
[-] snobol4.vim
[edit]
[-] msmessages.vim
[edit]
[-] squid.vim
[edit]
[-] m4.vim
[edit]
[-] expect.vim
[edit]
[-] pccts.vim
[edit]
[-] diff.vim
[edit]
[-] htmldjango.vim
[edit]
[-] pine.vim
[edit]
[-] lsl.vim
[edit]
[-] elmfilt.vim
[edit]
[-] snnsres.vim
[edit]
[-] rpcgen.vim
[edit]
[-] mailcap.vim
[edit]
[-] ist.vim
[edit]
[-] texinfo.vim
[edit]
[-] lifelines.vim
[edit]
[-] javacc.vim
[edit]
[-] aml.vim
[edit]
[-] csh.vim
[edit]
[-] ant.vim
[edit]
[-] exports.vim
[edit]
[-] erlang.vim
[edit]
[-] forth.vim
[edit]
[-] mmp.vim
[edit]
[-] cf.vim
[edit]
[-] debcontrol.vim
[edit]
[-] racc.vim
[edit]
[-] wvdial.vim
[edit]
[-] dns.vim
[edit]
[-] abaqus.vim
[edit]
[-] slpspi.vim
[edit]
[-] sgmldecl.vim
[edit]
[-] web.vim
[edit]
[-] vim.vim
[edit]
[-] hitest.vim
[edit]
[-] udevconf.vim
[edit]
[-] trasys.vim
[edit]
[-] vb.vim
[edit]
[-] alsaconf.vim
[edit]
[-] elf.vim
[edit]
[-] smith.vim
[edit]
[-] tilde.vim
[edit]
[-] xkb.vim
[edit]
[-] sdc.vim
[edit]
[-] promela.vim
[edit]
[-] ayacc.vim
[edit]
[-] chaskell.vim
[edit]
[-] mp.vim
[edit]
[-] usserverlog.vim
[edit]
[-] gedcom.vim
[edit]
[-] bindzone.vim
[edit]
[-] git.vim
[edit]
[-] vhdl.vim
[edit]
[-] lftp.vim
[edit]
[-] dtml.vim
[edit]
[-] aspperl.vim
[edit]
[-] ocaml.vim
[edit]
[-] antlr.vim
[edit]
[-] lhaskell.vim
[edit]
[-] tt2.vim
[edit]
[-] cdrdaoconf.vim
[edit]
[-] tsalt.vim
[edit]
[-] upstreamdat.vim
[edit]
[-] sqlhana.vim
[edit]
[-] rng.vim
[edit]
[-] monk.vim
[edit]
[-] css.vim
[edit]
[-] opl.vim
[edit]
[-] mgp.vim
[edit]
[-] dosbatch.vim
[edit]
[-] lua.vim
[edit]
[-] esqlc.vim
[edit]
[-] chaiscript.vim
[edit]
[-] sieve.vim
[edit]
[-] debchangelog.vim
[edit]
[-] autoit.vim
[edit]
[-] resolv.vim
[edit]
[-] natural.vim
[edit]
[-] rcs.vim
[edit]
[-] verilogams.vim
[edit]
[-] perl.vim
[edit]
[-] obj.vim
[edit]
[-] gp.vim
[edit]
[-] xmath.vim
[edit]
[-] netrw.vim
[edit]
[-] sensors.vim
[edit]
[-] valgrind.vim
[edit]
[-] eterm.vim
[edit]
[-] sendpr.vim
[edit]
[-] rib.vim
[edit]
[-] lscript.vim
[edit]
[-] xpm2.vim
[edit]
[-] haml.vim
[edit]
[-] asm.vim
[edit]
[-] falcon.vim
[edit]
[-] sshdconfig.vim
[edit]
[-] plsql.vim
[edit]
[-] msql.vim
[edit]
[-] upstreaminstalllog.vim
[edit]
[-] wsh.vim
[edit]
[-] kix.vim
[edit]
[-] smarty.vim
[edit]
[-] tt2js.vim
[edit]
[-] upstreamlog.vim
[edit]
[-] icon.vim
[edit]
[-] remind.vim
[edit]
[-] jam.vim
[edit]
[-] takout.vim
[edit]
[-] strace.vim
[edit]
[-] viminfo.vim
[edit]
[-] taskdata.vim
[edit]
[-] sather.vim
[edit]
[-] nroff.vim
[edit]
[-] xxd.vim
[edit]
[-] snnspat.vim
[edit]
[-] gdmo.vim
[edit]
[-] objcpp.vim
[edit]
[-] rtf.vim
[edit]
[-] debsources.vim
[edit]
[-] grads.vim
[edit]
[-] awk.vim
[edit]
[-] dictconf.vim
[edit]
[-] ampl.vim
[edit]
[-] colortest.vim
[edit]
[-] ptcap.vim
[edit]
[-] asciidoc.vim
[edit]
[-] cfg.vim
[edit]
[-] lace.vim
[edit]
[-] scheme.vim
[edit]
[-] dictdconf.vim
[edit]
[-] fan.vim
[edit]
[-] docbk.vim
[edit]
[-] fstab.vim
[edit]
[-] dsl.vim
[edit]
[-] xinetd.vim
[edit]
[-] initng.vim
[edit]
[-] radiance.vim
[edit]
[-] kwt.vim
[edit]
[-] framescript.vim
[edit]
[-] rst.vim
[edit]
[-] dtrace.vim
[edit]
[-] gdb.vim
[edit]
[-] ruby.vim
[edit]
[-] conf.vim
[edit]
[-] hercules.vim
[edit]
[-] phtml.vim
[edit]
[-] tsscl.vim
[edit]
[-] fvwm.vim
[edit]
[-] btm.vim
[edit]
[-] catalog.vim
[edit]
[-] javascript.vim
[edit]
[-] robots.vim
[edit]
[-] mmix.vim
[edit]
[-] inform.vim
[edit]
[-] vrml.vim
[edit]
[-] mysql.vim
[edit]
[-] slice.vim
[edit]
[-] dylan.vim
[edit]
[-] psf.vim
[edit]
[-] iss.vim
[edit]
[-] hb.vim
[edit]
[-] smil.vim
[edit]
[-] upstart.vim
[edit]
[-] texmf.vim
[edit]
[-] latte.vim
[edit]
[-] fetchmail.vim
[edit]
[-] def.vim
[edit]
[-] tli.vim
[edit]
[-] ld.vim
[edit]
[-] markdown.vim
[edit]
[-] sqlforms.vim
[edit]
[-] modsim3.vim
[edit]
[-] mailaliases.vim
[edit]
[-] php.vim
[edit]
[-] xf86conf.vim
[edit]
[-] gretl.vim
[edit]
[-] sqlj.vim
[edit]
[-] context.vim
[edit]
[-] ppd.vim
[edit]
[-] ppwiz.vim
[edit]
[-] sass.vim
[edit]
[-] msidl.vim
[edit]
[-] ora.vim
[edit]
[-] a2ps.vim
[edit]
[-] lex.vim
[edit]
[-] sdl.vim
[edit]
[-] gprof.vim
[edit]
[-] gitolite.vim
[edit]
[-] cuplsim.vim
[edit]
[-] prolog.vim
[edit]
[-] haskell.vim
[edit]
[-] vgrindefs.vim
[edit]
[-] nasm.vim
[edit]
[-] mupad.vim
[edit]
[-] inittab.vim
[edit]
[-] stp.vim
[edit]
[-] indent.vim
[edit]
[-] hostconf.vim
[edit]
[-] modconf.vim
[edit]
[-] udevperm.vim
[edit]
[-] apache.vim
[edit]
[-] bc.vim
[edit]
[-] taskedit.vim
[edit]
[-] xpm.vim
[edit]
[-] sindaout.vim
[edit]
[-] baan.vim
[edit]
[-] abel.vim
[edit]
[-] ratpoison.vim
[edit]
[-] prescribe.vim
[edit]
[-] html.vim
[edit]
[-] spyce.vim
[edit]
[-] mib.vim
[edit]
[-] ia64.vim
[edit]
[-] pod.vim
[edit]
[-] 2html.vim
[edit]
[-] clean.vim
[edit]
[-] sicad.vim
[edit]
[-] bst.vim
[edit]
[-] config.vim
[edit]
[-] apachestyle.vim
[edit]
[-] cdl.vim
[edit]
[-] lisp.vim
[edit]
[-] rcslog.vim
[edit]
[-] wdiff.vim
[edit]
[-] pic.vim
[edit]
[-] hostsaccess.vim
[edit]
[-] mail.vim
[edit]
[-] virata.vim
[edit]
[-] datascript.vim
[edit]
[-] simula.vim
[edit]
[-] maple.vim
[edit]
[-] ahdl.vim
[edit]
[-] sed.vim
[edit]
[-] cpp.vim
[edit]
[-] docbkxml.vim
[edit]
[-] scilab.vim
[edit]
[-] limits.vim
[edit]
[-] cobol.vim
[edit]
[-] jproperties.vim
[edit]
[-] jgraph.vim
[edit]
[-] maxima.vim
[edit]
[-] spec.vim
[edit]
[-] acedb.vim
[edit]
[-] mf.vim
[edit]
[-] pdf.vim
[edit]
[-] terminfo.vim
[edit]
[-] logindefs.vim
[edit]
[-] clojure.vim
[edit]
[-] st.vim
[edit]
[-] progress.vim
[edit]
[-] moo.vim
[edit]
[-] ecd.vim
[edit]
[-] pilrc.vim
[edit]
[-] jsp.vim
[edit]
[-] skill.vim
[edit]
[-] autohotkey.vim
[edit]
[-] sudoers.vim
[edit]
[-] slpreg.vim
[edit]
[-] sh.vim
[edit]
[-] sgml.vim
[edit]
[-] cterm.vim
[edit]
[-] arch.vim
[edit]
[-] procmail.vim
[edit]
[-] readline.vim
[edit]
[-] ave.vim
[edit]
[-] pinfo.vim
[edit]
[-] slang.vim
[edit]
[-] cheetah.vim
[edit]
[-] amiga.vim
[edit]
[-] tasm.vim
[edit]
[-] pcap.vim
[edit]