diff --git a/after/syntax/cmake.vim b/after/syntax/cmake.vim index aaef38b..8143940 100644 --- a/after/syntax/cmake.vim +++ b/after/syntax/cmake.vim @@ -4,3 +4,5 @@ syntax region cmakeFunctionBlock start='function\s*(.*)' end='endfunction\s*(.*) syntax region cmakeMacroBlock start='macro\s*(.*)' end='endmacro\s*(.*)' fold transparent keepend syntax region cmakeForeachBlock start='foreach\s*(.*)' end='endforeach\s*(.*)' fold transparent keepend syntax region cmakeWhileBlock start='while\s*(.*)' end='endwhile\s*(.*)' fold transparent keepend + +highlight link cmakeStatement Statement