diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-22 21:47:21 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-22 21:47:21 +0200 |
commit | 378dcb387823e840c13722d4b514086c8dfa3527 (patch) | |
tree | ecb439c9c3e7c14eae2966250d50652b068f01e9 /ftdetect | |
parent | 6f0c50457f9d197c1a1759d4302f251cce4242d8 (diff) | |
download | vim-polyglot-378dcb387823e840c13722d4b514086c8dfa3527.tar.gz vim-polyglot-378dcb387823e840c13722d4b514086c8dfa3527.zip |
Update tests location
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index cdb96b50..ba187f91 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -366,6 +366,10 @@ if !has_key(s:disabled_packages, 'protobuf') au! BufRead,BufNewFile *.proto endif +if !has_key(s:disabled_packages, 'puppet') + au! BufRead,BufNewFile *.pp +endif + if !has_key(s:disabled_packages, 'python') au! BufRead,BufNewFile *.py,*.pyi,*.pyw,*.spec,SConstruct endif |