1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
" Vim syntax file
" Language: The SPL Programming Language, Template Files
" Maintainer: Clifford Wolf <clifford@clifford.at>
" Filenames: *.spltpl
" Last Change: $Date: 2005-10-07 08:51:08 +0200 (Fri, 07 Oct 2005) $
" URL: http://svn.clifford.at/spl/trunk/syntax-spltpl.vim
"
" SPL - The SPL Programming Language
" Copyright (C) 2004, 2005 Clifford Wolf <clifford@clifford.at>
"
" This program is free software; you can redistribute it and/or modify
" it under the terms of the GNU General Public License as published by
" the Free Software Foundation; either version 2 of the License, or
" (at your option) any later version.
"
" This program is distributed in the hope that it will be useful,
" but WITHOUT ANY WARRANTY; without even the implied warranty of
" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
" GNU General Public License for more details.
"
" You should have received a copy of the GNU General Public License
" along with this program; if not, write to the Free Software
" Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"
" syntax-spltpl.vim: VIM syntax highlighting rules for SPL Template Files
"
" --- HOWTO INSTALL ---
"
" 1.
" Install the syntax-spl.vim file
"
" 2.
" Copy or symlink this file to ~/.vim/syntax/spltpl.vim
"
" 3.
" Add the following to your ~/.vimrc:
" au BufRead,BufNewFile *.spltpl set filetype=spltpl
"
" ---------------------
"
" Include SPL Syntax
syntax include @SplDummyTopLevel <sfile>:p:h/spl.vim
" This matches first
syntax match TemplateConstant "\_.*" extend contains=@DollarSubst,@SplTags
highlight link TemplateConstant Constant
|