diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2024-12-31 11:53:02 +0100 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2024-12-31 12:29:35 +0100 |
| commit | 1877cd5fcdc0bbe5f3d0685d42d4e295fb819724 (patch) | |
| tree | b0171f103d6e42e5c71cf1b688565e7dd56f9273 /test | |
| parent | 7ecd348b3da3bd27a0dd8db07896bf17a86bb26c (diff) | |
| download | rneovim-1877cd5fcdc0bbe5f3d0685d42d4e295fb819724.tar.gz rneovim-1877cd5fcdc0bbe5f3d0685d42d4e295fb819724.tar.bz2 rneovim-1877cd5fcdc0bbe5f3d0685d42d4e295fb819724.zip | |
vim-patch:9.1.0982: TI linker files are not recognized
Problem: TI linker files are not recognized
Solution: inspect '*.cmd' files and detect TI linker files
as 'lnk' filetype, include a lnk ftplugin and syntax
script (Wu, Zhenyu)
closes: vim/vim#16320
https://github.com/vim/vim/commit/39a4eb0b2ca901b59800fad086550053556e59dc
Co-authored-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
Diffstat (limited to 'test')
| -rw-r--r-- | test/old/testdir/test_filetype.vim | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/old/testdir/test_filetype.vim b/test/old/testdir/test_filetype.vim index 462bf2e025..1bf2bdb360 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -2300,6 +2300,27 @@ func Test_cls_file() filetype off endfunc +func Test_cmd_file() + filetype on + + call writefile(['--rom_model'], 'Xfile.cmd') + split Xfile.cmd + call assert_equal('lnk', &filetype) + bwipe! + + call writefile(['/* comment */'], 'Xfile.cmd') + split Xfile.cmd + call assert_equal('rexx', &filetype) + bwipe! + + call writefile(['REM comment'], 'Xfile.cmd') + split Xfile.cmd + call assert_equal('dosbatch', &filetype) + bwipe! + + filetype off +endfunc + func Test_sig_file() filetype on |