diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2018-11-04 05:56:34 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-11-04 11:56:34 +0100 |
commit | 21fb9b2b085eca6d29d7d6b338ee11701b927df3 (patch) | |
tree | dff660e00878f8d7f2dfcd9ba7e86f5992338861 /src | |
parent | 67f80d485cecc1158d9d3833cbf1cf67f3a324bb (diff) | |
download | rneovim-21fb9b2b085eca6d29d7d6b338ee11701b927df3.tar.gz rneovim-21fb9b2b085eca6d29d7d6b338ee11701b927df3.tar.bz2 rneovim-21fb9b2b085eca6d29d7d6b338ee11701b927df3.zip |
vim-patch:8.1.0507: .raml files not properly detected (#9195)
Problem: .raml files not properly detected.
Solution: Recognize .raml as raml instead of yaml. (closes vim/vim#3594)
https://github.com/vim/vim/commit/da1c11c6411182e9a4bd4374e3fb8851fef77113
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index 4403d89121..b0a1ea0225 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -494,6 +494,7 @@ let s:filename_checks = { \ 'xslt': ['file.xsl', 'file.xslt'], \ 'yacc': ['file.yy', 'file.yxx', 'file.y++'], \ 'yaml': ['file.yaml', 'file.yml'], + \ 'raml': ['file.raml'], \ 'z8a': ['file.z8a'], \ 'zimbu': ['file.zu'], \ 'zimbutempl': ['file.zut'], |