diff options
Diffstat (limited to 'syntax/embeddedpuppet.vim')
-rw-r--r-- | syntax/embeddedpuppet.vim | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/syntax/embeddedpuppet.vim b/syntax/embeddedpuppet.vim deleted file mode 100644 index dad9e1fb..00000000 --- a/syntax/embeddedpuppet.vim +++ /dev/null @@ -1,33 +0,0 @@ -if polyglot#init#is_disabled(expand('<sfile>:p'), 'puppet', 'syntax/embeddedpuppet.vim') - finish -endif - -" Vim syntax plugin -" Language: embedded puppet -" Maintainer: Gabriel Filion <gabster@lelutin.ca> -" URL: https://github.com/rodjek/vim-puppet -" Last Change: 2019-09-01 - -" quit when a syntax file was already loaded {{{1 -if exists("b:current_syntax") - finish -endif - -runtime! syntax/sh.vim -unlet! b:current_syntax - -syn include @puppetTop syntax/puppet.vim - -syn cluster ePuppetRegions contains=ePuppetBlock,ePuppetExpression,ePuppetComment - -syn region ePuppetBlock matchgroup=ePuppetDelimiter start="<%%\@!-\=" end="[=-]\=%\@<!%>" contains=@puppetTop containedin=ALLBUT,@ePuppetRegions keepend -syn region ePuppetExpression matchgroup=ePuppetDelimiter start="<%=\{1,4}" end="[=-]\=%\@<!%>" contains=@puppetTop containedin=ALLBUT,@ePuppetRegions keepend -syn region ePuppetComment matchgroup=ePuppetDelimiter start="<%-\=#" end="[=-]\=%\@<!%>" contains=puppetTodo,@Spell containedin=ALLBUT,@ePuppetRegions keepend - -" Define the default highlighting. - -hi def link ePuppetDelimiter PreProc -hi def link ePuppetComment Comment - -let b:current_syntax = "embeddedpuppet" - |