summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-11-03 19:52:15 +0100
committerBram Moolenaar <Bram@vim.org>2018-11-03 19:52:15 +0100
commitda1c11c6411182e9a4bd4374e3fb8851fef77113 (patch)
tree5701e62b06c7649e3443947f9e46ca4860150298 /src
parent9691f82f862ed18c2e3e48f9d2cd902bb947f803 (diff)
patch 8.1.0507: .raml files not properly detectedv8.1.0507
Problem: .raml files not properly detected. Solution: Recognize .raml as raml instead of yaml. (closes #3594)
Diffstat (limited to 'src')
-rw-r--r--src/testdir/test_filetype.vim1
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim
index 9c537646f5..d146bd2ce1 100644
--- a/src/testdir/test_filetype.vim
+++ b/src/testdir/test_filetype.vim
@@ -495,6 +495,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'],
diff --git a/src/version.c b/src/version.c
index 54b9a6c7b6..28f39d4b93 100644
--- a/src/version.c
+++ b/src/version.c
@@ -793,6 +793,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 507,
+/**/
506,
/**/
505,