Lines Matching refs:scroll
1841 scroll = 0
1858 sel_node_i, scroll)
1867 nonlocal scroll
1872 if sel_node_i >= scroll + matches_win.getmaxyx()[0] - _SCROLL_OFFSET:
1873 scroll = min(scroll + 1, _max_scroll(matches, matches_win))
1877 nonlocal scroll
1882 if sel_node_i <= scroll + _SCROLL_OFFSET:
1883 scroll = max(scroll - 1, 0)
1950 sel_node_i = scroll = 0
1954 bad_re, matches, sel_node_i, scroll)
1974 scroll = _resize_jump_to_dialog(
1976 sel_node_i, scroll)
1984 scroll = _resize_jump_to_dialog(
1986 sel_node_i, scroll)
2007 scroll = _max_scroll(matches, matches_win)
2010 sel_node_i = scroll = 0
2057 sel_node_i, scroll): argument
2092 if sel_node_i - scroll >= matches_win_height:
2094 return scroll
2098 bad_re, matches, sel_node_i, scroll): argument
2110 for i in range(scroll,
2111 min(scroll + matches_win.getmaxyx()[0], len(matches))):
2124 _safe_addstr(matches_win, i - scroll, 0, node_str,
2141 if scroll < _max_scroll(matches, matches_win):
2169 if scroll > 0:
2210 scroll = 0
2213 _draw_info_dialog(node, lines, scroll, top_line_win, text_win,
2224 if scroll < _max_scroll(lines, text_win):
2225 scroll += 1
2228 scroll = min(scroll + _PG_JUMP, _max_scroll(lines, text_win))
2231 scroll = max(scroll - _PG_JUMP, 0)
2234 scroll = _max_scroll(lines, text_win)
2237 scroll = 0
2240 if scroll > 0:
2241 scroll -= 1
2292 def _draw_info_dialog(node, lines, scroll, top_line_win, text_win, argument
2306 for i, line in enumerate(lines[scroll:scroll + text_win_height]):
2319 if scroll < _max_scroll(lines, text_win):
2346 if scroll > 0: