Lines Matching refs:ind
175 let ind = indent(a:curr_lnum) - shiftwidth()
190 let ind = indent(matching_lnum)
202 let ind = indent(matching_lnum)
204 let ind = indent(a:curr_lnum)
208 return ind
235 function! s:ModuloIndent(ind) argument
236 let ind = a:ind
238 if ind > 0
239 let modulo = ind % shiftwidth()
242 let ind = ind - modulo
246 return ind
253 let ind = indent(lnum)
259 " return ind
265 return ind
270 let ind = s:ModuloIndent(indent(prevlnum))
271 return ind + 1
292 let ind = indent(prevlnum)
300 let ind = ind + shiftwidth()
301 " echom 'prevl - SQLBlockStart - indent ' . ind . ' line: ' . prevline
317 let ind = ind + ( shiftwidth() * num_unmatched_left )
332 let ind = ind - ( shiftwidth() * (num_unmatched_right - ignore) )
339 " echom 'CURRENT INDENT: ' . ind . ' LINE: ' . getline(v:lnum)
348 let ind = ind - shiftwidth()
349 " echom 'curr - else - indent ' . ind
351 let ind = s:GetStmtStarterIndent('end', v:lnum)
353 " let ind = ind - shiftwidth()
354 " echom 'curr - end - indent ' . ind
356 let ind = s:GetStmtStarterIndent('when', v:lnum)
361 " let ind = ind - shiftwidth()
380 " let ind = ind - shiftwidth()
387 let ind = ind - ( shiftwidth() * (num_unmatched_right - ignore) )
392 " echom 'final - indent ' . ind
393 return s:ModuloIndent(ind)