patch 9.0.1263: KDL files are not recognized
Problem: KDL files are not recognized.
Solution: Add a pattern for KDL files. (Amaan Qureshi, closes #11898)
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 8654362..200153e 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1032,6 +1032,9 @@
" Julia
au BufNewFile,BufRead *.jl setf julia
+" KDL
+au BufNewFile,BufRead *.kdl setf kdl
+
" Kixtart
au BufNewFile,BufRead *.kix setf kix
diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim
index a6d87ae..790d98c 100644
--- a/src/testdir/test_filetype.vim
+++ b/src/testdir/test_filetype.vim
@@ -300,6 +300,7 @@
\ 'jsp': ['file.jsp'],
\ 'julia': ['file.jl'],
\ 'kconfig': ['Kconfig', 'Kconfig.debug', 'Kconfig.file'],
+ \ 'kdl': ['file.kdl'],
\ 'kivy': ['file.kv'],
\ 'kix': ['file.kix'],
\ 'kotlin': ['file.kt', 'file.ktm', 'file.kts'],
diff --git a/src/version.c b/src/version.c
index bb15492..7e93b11 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1263,
+/**/
1262,
/**/
1261,