我想突出显示#ifdef DEBUG
和#endif
我试过了:
syntax match DEBUG /#ifdef DEBUG.*?#endif/
hi DEBUG ctermfg=green ctermbg=white
但它没有强调DEBUG块。有什么想法吗?
答案 0 :(得分:2)
您必须使用region
代替match
,如下所示:
syntax region DEBUG start=/#ifdef DEBUG/ end=/#endif/
相关帮助文件为syn-match
和syn-region
。