Lines Matching refs:indent
1 " Vim indent file
10 " Only load this indent file when no other was loaded.
43 return indent(a:lnum - 1)
45 …return indent(a:lnum - 1) + (exists("g:mesonindent_continue") ? eval(g:mesonindent_continue) : (sh…
48 " If the start of the line is in a string don't change the indent.
58 " This is the first non-empty line, use zero indent.
62 " If the previous line is inside parenthesis, use the indent of the starting
72 let plindent = indent(parlnum)
75 let plindent = indent(plnum)
92 " When the start is inside parenthesis, only indent one 'shiftwidth'.
98 …return indent(plnum) + (exists("g:pyindent_nested_paren") ? eval(g:pyindent_nested_paren) : shiftw…
100 …return indent(plnum) + (exists("g:pyindent_open_paren") ? eval(g:pyindent_open_paren) : shiftwidth…
103 return indent(plnum)
143 " Maintain indent
147 " If the previous line ended with a builtin, indent this line
161 if indent(a:lnum) <= plindent - shiftwidth()