Lines Matching refs:line
23 " Find a non-blank line above the current line:
32 let line = getline(lnum)
34 " No indentation if the previous line didn't end with "\":
36 if line !~ '\\$'
40 if line =~ '\(/def.*\\\|/for.*\(%;\s*\)\@\<!\\\)$'
42 elseif line =~ '\(/if\|/else\|/then\)'
43 if line !~ '/endif'
46 elseif line =~ '/while'
47 if line !~ '/done'
52 let line = getline(v:lnum)
54 if line =~ '\(/else\|/endif\|/then\)'
55 if line !~ '/if'
58 elseif line =~ '/done'
59 if line !~ '/while'
64 " Comments at the beginning of a line:
65 if line =~ '^\s*;'