diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2025-03-06 19:39:49 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-06 19:39:49 +0800 |
| commit | baccb569dc8508af5bea521bd27800c478883b29 (patch) | |
| tree | 62e36e4e6ca58bc0e4d3d41139d8ad37903ff81e /test | |
| parent | fa46441264b28e9272973ead7bea65f27868e94c (diff) | |
| download | rneovim-baccb569dc8508af5bea521bd27800c478883b29.tar.gz rneovim-baccb569dc8508af5bea521bd27800c478883b29.tar.bz2 rneovim-baccb569dc8508af5bea521bd27800c478883b29.zip | |
vim-patch:9.1.1173: filetype: ABNF files are not detected (#32751)
Problem: filetype: ABNF files are not detected
Solution: detect '.abnf' file as abnf filetype and
include an abnf syntax plugin (A4-Tacks).
References:
- RFC5234
- RFC7405
closes: vim/vim#16802
https://github.com/vim/vim/commit/9f827ec58728c4ea55a8d71d40a283ca2ce5b058
Co-authored-by: A4-Tacks <wdsjxhno1001@163.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 37337d9b54..798a214769 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -88,6 +88,7 @@ func s:GetFilenameChecks() abort \ 'abap': ['file.abap'], \ 'abc': ['file.abc'], \ 'abel': ['file.abl'], + \ 'abnf': ['file.abnf'], \ 'acedb': ['file.wrm'], \ 'ada': ['file.adb', 'file.ads', 'file.ada', 'file.gpr'], \ 'ahdl': ['file.tdf'], |