diff options
author | Amaan Qureshi <amaanq12@gmail.com> | 2023-01-30 15:19:57 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2023-01-30 15:19:57 +0000 |
commit | 907349a74331fc1bc48cf43c1e7d54cb9e0e4fc9 (patch) | |
tree | abf1e403349f9e6c43af95bd825476d04d016214 /runtime | |
parent | f2e30d0c448b9754d0d4daa901b51fbbf4c30747 (diff) | |
download | vim-git-907349a74331fc1bc48cf43c1e7d54cb9e0e4fc9.tar.gz |
patch 9.0.1263: KDL files are not recognizedv9.0.1263
Problem: KDL files are not recognized.
Solution: Add a pattern for KDL files. (Amaan Qureshi, closes #11898)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 8654362af..200153e75 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1032,6 +1032,9 @@ au BufNewFile,BufRead *.jsonnet,*.libsonnet setf jsonnet " Julia au BufNewFile,BufRead *.jl setf julia +" KDL +au BufNewFile,BufRead *.kdl setf kdl + " Kixtart au BufNewFile,BufRead *.kix setf kix |