Lines Matching defs:redraw
595 // 0x10000000 = redraw after cursor needed
596 // 0x20000000 = full redraw needed
612 //give up, file is big, do full redraw
1358 int scroll = 0, redraw = 0;
1364 //redraw = 3; //force full redraw
1365 redraw = (TT.vi_mov_flag & 0x30000000)>>28;
1368 if (TT.drawn_row<0 || TT.cur_row<0 || TT.scr_row<0) redraw = 3;
1369 else if (abs(scroll)>TT.screen_height/2) redraw = 3;
1372 if (redraw&2) tty_esc("2J"), tty_esc("H"); //clear screen
1442 //if we moved around in long line might need to redraw everything
1443 if (clip != TT.drawn_col) redraw = 3;
1452 } else if (redraw) draw_line++;