0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00
vim/runtime/syntax/salt.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
305 B
VimL
Raw Normal View History

" 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'