diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2024-11-19 22:29:18 +0100 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2024-11-20 09:31:15 +0100 |
| commit | de9ed1ca5478481679df23f894b92b6756be7aed (patch) | |
| tree | 26195a48d09fe13aa8feded19a3c112ad7951d85 /test | |
| parent | fd57f39766c9f26da739214288f90be74223c3cd (diff) | |
| download | rneovim-de9ed1ca5478481679df23f894b92b6756be7aed.tar.gz rneovim-de9ed1ca5478481679df23f894b92b6756be7aed.tar.bz2 rneovim-de9ed1ca5478481679df23f894b92b6756be7aed.zip | |
vim-patch:9.1.0874: filetype: karel files are not detected
Problem: filetype: karel files are not detected
Solution: detect '*.kl' files as karel filetype,
include syntax and filetype plugin
(Kirill Morozov)
closes: vim/vim#16075
https://github.com/vim/vim/commit/fdac54d7bbf6d68a8bf741e734b86d0f1998ac86
Co-authored-by: Kirill Morozov <kirill@robotix.pro>
Co-authored-by: KnoP-01 <knosowski@graeffrobotics.de>
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 19b7d41552..2749a6a200 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -392,6 +392,7 @@ func s:GetFilenameChecks() abort \ 'jsp': ['file.jsp'], \ 'julia': ['file.jl'], \ 'just': ['justfile', 'Justfile', '.justfile', 'config.just'], + \ 'karel': ['file.kl', 'file.KL'], \ 'kconfig': ['Kconfig', 'Kconfig.debug', 'Kconfig.file', 'Config.in', 'Config.in.host'], \ 'kdl': ['file.kdl'], \ 'kivy': ['file.kv'], |