diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-07-27 16:48:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-27 16:48:29 +0800 |
commit | 60967cd9aac545a5a5f17070d39121d4070e2298 (patch) | |
tree | 3e4514463f6a69673bf299de42f5bd1ff2892ace /test/old/testdir | |
parent | aa853f362addded400d52d8fdfe5247c300c0e89 (diff) | |
download | rneovim-60967cd9aac545a5a5f17070d39121d4070e2298.tar.gz rneovim-60967cd9aac545a5a5f17070d39121d4070e2298.tar.bz2 rneovim-60967cd9aac545a5a5f17070d39121d4070e2298.zip |
vim-patch:9.1.0616: filetype: Make syntax highlighting off for MS Makefiles (#29874)
Problem: filetype: Make syntax highlighting off for MS Makefiles
Solution: Try to detect MS Makefiles and adjust syntax rules to it.
(Ken Takata)
Highlighting of variable expansion in Microsoft Makefile can be broken.
E.g.:
https://github.com/vim/vim/blob/2979cfc2627d76a9c09cad46a1647dcd4aa73f5f/src/Make_mvc.mak#L1331
Don't use backslash as escape characters if `make_microsoft` is set.
Also fix that `make_no_comments` was not considered if `make_microsoft`
was set.
Also add description for `make_microsoft` and `make_no_comments` to the
documentation and include a very simple filetype test
closes: vim/vim#15341
https://github.com/vim/vim/commit/eb4b903c9b238ebcc1d14cfcb207129b4931a33d
Co-authored-by: Ken Takata <kentkt@csc.jp>
Diffstat (limited to 'test/old/testdir')
-rw-r--r-- | test/old/testdir/test_filetype.vim | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/old/testdir/test_filetype.vim b/test/old/testdir/test_filetype.vim index 16c4130420..83aff0205b 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -2641,4 +2641,21 @@ func Test_pl_file() filetype off endfunc +func Test_make_file() + filetype on + + " Microsoft Makefile + call writefile(['# Makefile for Windows', '!if "$(VIMDLL)" == "yes"'], 'XMakefile.mak', 'D') + split XMakefile.mak + call assert_equal(1, get(b:, 'make_microsoft', 0)) + bwipe! + + call writefile(['# get the list of tests', 'include testdir/Make_all.mak'], 'XMakefile.mak', 'D') + split XMakefile.mak + call assert_equal(0, get(b:, 'make_microsoft', 0)) + bwipe! + + filetype off +endfunc + " vim: shiftwidth=2 sts=2 expandtab |