Lines Matching refs:line
25 let line = getline(lnum)
26 if line !~ '^\s*\(#\|$\)'
35 let line = getline(a:lnum)
36 if line =~ '\\\s*$'
46 let line = getline(a:lnum)
48 let i = match(line, pattern)
51 if line[i] == '{'
53 elseif line[i] == '}'
61 let i = match(line, pattern, i + 1)
67 let line = getline(v:lnum)
69 " Get the line number of the previous non-blank or non-comment line.
75 " ..and the previous line before the previous line.
81 " ...but if previous line introduces an open brace, then increase current line's indentation
85 " Look for backslash line continuation on the previous two lines.
89 " If the previous line begins a line continuation.
92 " If two lines ago was the end of a line continuation group of lines.
97 " If the current line begins with a closed brace, then decrease the indentation by one.
98 if line =~ '^\s*}'