2 " Program: CMake - Cross-Platform Makefile Generator
3 " Module: $RCSfile: cmake-indent.vim,v $
4 " Language: CMake (ft=cmake)
5 " Author: Andy Cedilnik <andy.cedilnik@kitware.com>
6 " Maintainer: Karthik Krishnan <karthik.krishnan@kitware.com>
7 " Last Change: $Date: 2008-01-16 16:53:53 $
8 " Version: $Revision: 1.9 $
10 " Licence: The CMake license applies to this file. See
11 " http://www.cmake.org/HTML/Copyright.html
12 " This implies that distribution with Vim is allowed
14 if exists("b:did_indent")
19 setlocal indentexpr=CMakeGetIndent(v:lnum)
20 setlocal indentkeys+=0=~ENDIF(,0=~ENDFOREACH(,0=~ENDMACRO(,0=~ELSE(,0=~ELSEIF(,0=~ENDWHILE(
22 " Only define the function once.
23 if exists("*CMakeGetIndent")
29 fun! CMakeGetIndent(lnum)
30 let this_line = getline(a:lnum)
32 " Find a non-blank line above the current line.
34 let lnum = prevnonblank(lnum - 1)
35 let previous_line = getline(lnum)
37 " Hit the start of the file, use zero indent.
42 let ind = indent(lnum)
45 " Regular expressions used by line indentation function.
46 let cmake_regex_comment = '#.*'
47 let cmake_regex_identifier = '[A-Za-z][A-Za-z0-9_]*'
48 let cmake_regex_quoted = '"\([^"\\]\|\\.\)*"'
49 let cmake_regex_arguments = '\(' . cmake_regex_quoted .
50 \ or . '\$(' . cmake_regex_identifier . ')' .
51 \ or . '[^()\\#"]' . or . '\\.' . '\)*'
53 let cmake_indent_comment_line = '^\s*' . cmake_regex_comment
54 let cmake_indent_blank_regex = '^\s*$'
55 let cmake_indent_open_regex = '^\s*' . cmake_regex_identifier .
56 \ '\s*(' . cmake_regex_arguments .
57 \ '\(' . cmake_regex_comment . '\)\?$'
59 let cmake_indent_close_regex = '^' . cmake_regex_arguments .
61 \ '\(' . cmake_regex_comment . '\)\?$'
63 let cmake_indent_begin_regex = '^\s*\(IF\|MACRO\|FOREACH\|ELSE\|ELSEIF\|WHILE\|FUNCTION\)\s*('
64 let cmake_indent_end_regex = '^\s*\(ENDIF\|ENDFOREACH\|ENDMACRO\|ELSE\|ELSEIF\|ENDWHILE\|ENDFUNCTION\)\s*(' .
68 if previous_line =~? cmake_indent_comment_line " Handle comments
71 if previous_line =~? cmake_indent_begin_regex
74 if previous_line =~? cmake_indent_open_regex
80 if this_line =~? cmake_indent_end_regex
83 if previous_line =~? cmake_indent_close_regex