Having tried nedit for a few month, really like it as a light weighted 
text/programming editor.However, one thing I would like to change for myself is 
the cursor, is "NORMAL_CURSOR" is a single vertical line plus two horizontal 
lines, which is hard to see sometimes. I would suggestion use the following 
instead as the default

    } else if (textD->cursorStyle == NORMAL_CURSOR) {
        segs[0].x1 = x; segs[0].y1 = y; segs[0].x2 = x; segs[0].y2 = bot;
        segs[1].x1 = x+1; segs[1].y1 = y; segs[1].x2 = x+1; segs[1].y2 = bot;
        nSegs = 2;
    } else if (textD->cursorStyle == HEAVY_CURSOR) {
        segs[0].x1 = x-1; segs[0].y1 = y; segs[0].x2 = x-1; segs[0].y2 = bot;
        segs[1].x1 = x; segs[1].y1 = y; segs[1].x2 = x; segs[1].y2 = bot;
        segs[2].x1 = x+1; segs[2].y1 = y; segs[2].x2 = x+1; segs[2].y2 = bot;
        nSegs = 3;

I expect we have more choices, such as the block cursor (not the one we have 
but something like that in xemacs).


JF



      
-- 
NEdit Develop mailing list - [email protected]
http://www.nedit.org/mailman/listinfo/develop

Reply via email to