diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2024-05-08 18:39:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 18:39:18 -0500 |
commit | d3fa88b70f6f96ec4bc505968afec1dedb3b450b (patch) | |
tree | 36b08541300cee3956a75f25a368fd4f79a9bef1 /test | |
parent | 9b1628da986d2858e7716b769ff2ca229f80a88c (diff) | |
download | rneovim-d3fa88b70f6f96ec4bc505968afec1dedb3b450b.tar.gz rneovim-d3fa88b70f6f96ec4bc505968afec1dedb3b450b.tar.bz2 rneovim-d3fa88b70f6f96ec4bc505968afec1dedb3b450b.zip |
vim-patch:9.1.0396: filetype: jj files are not recognized (#28672)
Problem: jj files are not recognized
Solution: recognize '*.jjdescription' files as jj filetype
(Gregory Anders)
See: https://github.com/martinvonz/jj
closes: vim/vim#14733
https://github.com/vim/vim/commit/6a4ea471d28107c4078e106ace1bdc0c54bf946b
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 174eb333d9..3dd3db512a 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -360,6 +360,7 @@ func s:GetFilenameChecks() abort \ 'javascriptreact': ['file.jsx'], \ 'jess': ['file.clp'], \ 'jgraph': ['file.jgr'], + \ 'jj': ['file.jjdescription'], \ 'jq': ['file.jq'], \ 'jovial': ['file.jov', 'file.j73', 'file.jovial'], \ 'jproperties': ['file.properties', 'file.properties_xx', 'file.properties_xx_xx', 'some.properties_xx_xx_file', 'org.eclipse.xyz.prefs'], |