Lines Matching refs:lines
6 the lines which contain the block opening keywords, e.g. 'if', for the
7 enclosing block. The number of hint lines is determined by the maxlines
34 The indentation of empty lines (or comment lines) is INFINITY.
153 The list represents header lines from new_topvisible back to
159 lines = []
173 lines.append((linenum, indent, text, opener))
176 lines.reverse()
177 return lines, lastindent
180 """Update context information and lines visible in the context pane.
183 was scrolled, the lines that should be shown in the context will
191 lines, lastindent = self.get_context(new_topvisible,
200 # with lines above new_topvisible.
204 lines, lastindent = self.get_context(new_topvisible,
207 self.info.extend(lines)
209 # Last context_depth context lines.
228 lines = len(self.info)
229 if lines == 1: # No context lines are showing.
235 offset = max(1, lines - self.context_depth) - 1