- put line/col number is status bar
- allow cursor to move left/right an scroll-on-demand.
- If we have selected 'before', then don't show 'after' lines..
- - blank after end and before begining
+DONE - blank after end and before begining
- better movement:
top
bottom
- handle single .rej file
- allow updates to be saved
- allow editing???
-
+ - better colours?
- extract.c should be able to extract half of a word-diff
- extract.c should work on word-merges
else if ((tpos.side == 0 || tpos.side == -1) && (mode2 & (ORIG|BEFORE)))
draw_mline(i--,tpos,fm,fb,fa,ci.merger,start,cols, mode2&(ORIG|BEFORE|CHANGED|CHANGES));
}
+ while (i >= 1)
+ blank(i--, 0, cols, a_void);
tpos = pos; tpos2.p = pos.lo;
for (i=row; i<rows && ci.merger[tpos.p.m].type != End; ) {
mode2 = check_line(tpos, fm,fb,fa,ci.merger,mode);
}
next_mline(&tpos, fm,fb,fa,ci.merger, mode);
}
+ while (i<rows)
+ blank(i++, 0, cols, a_void);
}
move(row,0);
c = getch();