X-Git-Url: https://git.xinqibao.xyz/st.git/blobdiff_plain/3544e354b2dcdfcced1a2f4aeedb4d479abd543c..ba36d1394b3add5b9d4c174f1443cc312bcc7e09:/st.c?ds=sidebyside diff --git a/st.c b/st.c index a6b4ada..79a4e0a 100644 --- a/st.c +++ b/st.c @@ -829,6 +829,8 @@ mousereport(XEvent *e) { /* MODE_MOUSEX10: no button release reporting */ if(IS_SET(MODE_MOUSEX10)) return; + if (button == 64 || button == 65) + return; } } @@ -949,7 +951,7 @@ getsel(void) { * st. * FIXME: Fix the computer world. */ - if(y < sel.ne.y && x > 0 && !((gp-1)->mode & ATTR_WRAP)) + if(y < sel.ne.y && !(x > 0 && (gp-1)->mode & ATTR_WRAP)) *ptr++ = '\n'; /* @@ -2742,7 +2744,7 @@ xloadcols(void) { if(!XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &color, &dc.col[i])) die("Could not allocate color %d\n", i); } - + /* load colours [232-255] ; grayscale */ for(; i < 256; i++) { color.red = color.green = color.blue = 0x0808 + 0x0a0a * (i-(6*6*6+16)); @@ -3143,14 +3145,19 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) { if(base.mode & ATTR_BOLD) { /* - * change basic system colours [0-7] + * change basic system colours [0-7] * to bright system colours [8-15] */ if(BETWEEN(base.fg, 0, 7)) fg = &dc.col[base.fg + 8]; - - font = &dc.bfont; - frcflags = FRC_BOLD; + + if(base.mode & ATTR_ITALIC) { + font = &dc.ibfont; + frcflags = FRC_ITALICBOLD; + } else { + font = &dc.bfont; + frcflags = FRC_BOLD; + } } if(IS_SET(MODE_REVERSE)) {