diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-06-13 20:20:40 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-06-13 20:20:40 +0000 |
commit | 071d4279d6ab81b7187b48f3a0fc61e587b6db6c (patch) | |
tree | 221cbe3c40e043163c06f61c52a7ba2eb41e12ce /runtime/syntax/plp.vim | |
parent | b4210b3bc14e2918f153a7307530fbe6eba659e1 (diff) | |
download | vim-git-071d4279d6ab81b7187b48f3a0fc61e587b6db6c.tar.gz |
updated for version 7.0001v7.0001
Diffstat (limited to 'runtime/syntax/plp.vim')
-rw-r--r-- | runtime/syntax/plp.vim | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/runtime/syntax/plp.vim b/runtime/syntax/plp.vim new file mode 100644 index 000000000..f59702d3b --- /dev/null +++ b/runtime/syntax/plp.vim @@ -0,0 +1,45 @@ +" Vim syntax file +" Language: PLP (Perl in HTML) +" Maintainer: Juerd <juerd@juerd.nl> +" Last Change: 2003 Apr 25 +" Cloned From: aspperl.vim + +" Add to filetype.vim the following line (without quote sign): +" au BufNewFile,BufRead *.plp setf plp + +" For version 5.x: Clear all syntax items +" For version 6.x: Quit when a syntax file was already loaded +if version < 600 + syntax clear +elseif exists("b:current_syntax") + finish +endif + +if !exists("main_syntax") + let main_syntax = 'perlscript' +endif + +if version < 600 + so <sfile>:p:h/html.vim + syn include @PLPperl <sfile>:p:h/perl.vim +else + runtime! syntax/html.vim + unlet b:current_syntax + syn include @PLPperl syntax/perl.vim +endif + +syn cluster htmlPreproc add=PLPperlblock + +syn keyword perlControl PLP_END +syn keyword perlStatementInclude include Include +syn keyword perlStatementFiles ReadFile WriteFile Counter +syn keyword perlStatementScalar Entity AutoURL DecodeURI EncodeURI + +syn cluster PLPperlcode contains=perlStatement.*,perlFunction,perlOperator,perlVarPlain,perlVarNotInMatches,perlShellCommand,perlFloat,perlNumber,perlStringUnexpanded,perlString,perlQQ,perlControl,perlConditional,perlRepeat,perlComment,perlPOD,perlHereDoc,perlPackageDecl,perlElseIfError,perlFiledescRead,perlMatch + +syn region PLPperlblock keepend matchgroup=Delimiter start=+<:=\=+ end=+:>+ transparent contains=@PLPperlcode + +syn region PLPinclude keepend matchgroup=Delimiter start=+<(+ end=+)>+ + +let b:current_syntax = "plp" + |