diff options
author | Gregory Anders <greg@gpanders.com> | 2024-09-17 14:17:51 -0500 |
---|---|---|
committer | Gregory Anders <greg@gpanders.com> | 2024-09-17 14:18:51 -0500 |
commit | 9a3f74c4c7fa567bb492cc3604b6baca05c22f1a (patch) | |
tree | ac342e53f11b231db87fe6fdab4780b3f00618af /test | |
parent | 13d6f6cbb2337c1db5b3fceb607d36a2a632dc03 (diff) | |
download | rneovim-9a3f74c4c7fa567bb492cc3604b6baca05c22f1a.tar.gz rneovim-9a3f74c4c7fa567bb492cc3604b6baca05c22f1a.tar.bz2 rneovim-9a3f74c4c7fa567bb492cc3604b6baca05c22f1a.zip |
vim-patch:9.1.0735: filetype: salt files are not recognized
Problem: filetype: salt files are not recognized
Solution: Detect '*.sls' files as filetype salt,
include a syntax script (Gregory Anders)
closes: vim/vim#15689
https://github.com/vim/vim/commit/89b9bb4ac8ceb701ebecb8c02aca3d047dff9991
Co-authored-by: Gregory Anders <greg@gpanders.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_filetype.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/old/testdir/test_filetype.vim b/test/old/testdir/test_filetype.vim index 31a51f1254..51b6f884f4 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -633,6 +633,7 @@ func s:GetFilenameChecks() abort \ 'rtf': ['file.rtf'], \ 'ruby': ['.irbrc', 'irbrc', '.irb_history', 'irb_history', 'file.rb', 'file.rbw', 'file.gemspec', 'file.ru', 'Gemfile', 'file.builder', 'file.rxml', 'file.rjs', 'file.rant', 'file.rake', 'rakefile', 'Rakefile', 'rantfile', 'Rantfile', 'rakefile-file', 'Rakefile-file', 'Puppetfile', 'Vagrantfile'], \ 'rust': ['file.rs'], + \ 'salt': ['file.sls'], \ 'samba': ['smb.conf'], \ 'sas': ['file.sas'], \ 'sass': ['file.sass'], |