mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-08 11:33:52 -05:00
41 lines
1.5 KiB
VimL
41 lines
1.5 KiB
VimL
let s:base = expand("<sfile>:h:h")
|
|
let Filter = { _, v -> stridx(v, s:base) == -1 && stridx(v, $VIMRUNTIME) == -1 && v !~ "after" }
|
|
let files = filter(globpath(&rtp, 'syntax/embeddedpuppet.vim', 1, 1), Filter)
|
|
if len(files) > 0
|
|
exec 'source ' . files[0]
|
|
finish
|
|
endif
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'puppet') == -1
|
|
|
|
" 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"
|
|
|
|
|
|
endif
|