mirror of
https://github.com/vim/vim
synced 2025-03-15 06:17:51 +01:00
Problem: filetype: salt files are not recognized Solution: Detect '*.sls' files as filetype salt, include a syntax script (Gregory Anders) closes: #15689 Signed-off-by: Gregory Anders <greg@gpanders.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
16 lines
305 B
VimL
16 lines
305 B
VimL
" Vim syntax file
|
|
" Maintainer: Gregory Anders
|
|
" Last Changed: 2024-09-16
|
|
|
|
if exists('b:current_syntax')
|
|
finish
|
|
endif
|
|
|
|
" Salt state files are just YAML with embedded Jinja
|
|
runtime! syntax/yaml.vim
|
|
unlet! b:current_syntax
|
|
|
|
runtime! syntax/jinja.vim
|
|
unlet! b:current_syntax
|
|
|
|
let b:current_syntax = 'salt'
|