diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-10-05 14:42:38 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2023-10-06 09:52:24 +0200 |
commit | 1338140ee3ea9355a9cc756f77b8fc71fd27eda5 (patch) | |
tree | f18ca7056c0085d74d740526d903a57f361e282d /test | |
parent | f67517bba30b6233bea85e1f6a8505171142d4ca (diff) | |
download | rneovim-1338140ee3ea9355a9cc756f77b8fc71fd27eda5.tar.gz rneovim-1338140ee3ea9355a9cc756f77b8fc71fd27eda5.tar.bz2 rneovim-1338140ee3ea9355a9cc756f77b8fc71fd27eda5.zip |
vim-patch:9.0.1978: No filetype detection for just files
Problem: No filetype detection for just files
Solution: Detect just files (*.just, justfile, etc)
closes: vim/vim#13271
https://github.com/vim/vim/commit/3d90f71b764e67b1eb12fc6a9a4b9e2fca6dc087
vim-patch:b6d01f13: runtime(just): Correct filetype detection pattern and style
Co-authored-by: dundargoc <gocdundar@gmail.com>
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 e5d7085d71..c3002b6747 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -340,6 +340,7 @@ func s:GetFilenameChecks() abort \ 'jsonnet': ['file.jsonnet', 'file.libsonnet'], \ 'jsp': ['file.jsp'], \ 'julia': ['file.jl'], + \ 'just': ['justfile', 'Justfile', '.justfile', 'config.just'], \ 'kconfig': ['Kconfig', 'Kconfig.debug', 'Kconfig.file'], \ 'kdl': ['file.kdl'], \ 'kivy': ['file.kv'], |