Lines Matching refs:Line
210 let l:Line = substitute (getline (l:Line_Nr), g:ada#Comment, '', '' )
214 if l:Column_Nr > strlen(l:Line)
216 let l:Line = getline(l:Line_Nr)
233 " Have to include previous l:Line from file
239 let l:Our_Match = match (l:Line, g:ada#WordRegex )
242 " Get previous l:Line, and prepend it to our search string
246 let l:Line = l:New_Line . l:Line
250 \ matchend (strpart (l:Line,l:New_Column), g:ada#WordRegex ) - 1
255 \ match (strpart (l:Line,l:Match_End+1), g:ada#WordRegex )
264 let l:Line = strpart (l:Line, l:Our_Match)
268 let l:Match_String = matchstr (l:Line, g:ada#WordRegex)
273 let l:Line = l:Line .
275 let l:Match_String = matchstr (l:Line, g:ada#WordRegex)
356 let l:Line = getline ('.')
357 if col ('.') > strlen (l:Line) &&
358 \ match (l:Line, '-- $') != -1 &&
512 function ada#Pretty_Print_Folding (Line) " {{{2 argument
513 let l:Text = getline (a:Line)
525 let l:Level = (indent (a:Line) + 1) / &shiftwidth
527 let l:Level = indent (a:Line) / &shiftwidth