all repos — st @ 35421371ca150b6bd0fd1330e7b30a99029dbce1

st (suckless terminal) config

Applying the patch of Rafa Garcia Gallega <rafael.garcia.gallego@gmail.com> to

not emulate the vt100 behaviour of selecting all whitespaces. Thanks!
Christoph Lohmann 20h@r-36.net
commit

35421371ca150b6bd0fd1330e7b30a99029dbce1

parent

ee3fbeb6c8c354cf4db226a5b1583c531ea37af4

1 files changed, 6 insertions(+), 5 deletions(-)

jump to
M st.cst.c

@@ -678,7 +678,7 @@ }

void selcopy(void) { - char *str, *ptr, *p; + char *str, *ptr; int x, y, bufsize, is_selected = 0, size; Glyph *gp;

@@ -693,11 +693,12 @@ for(y = 0; y < term.row; y++) {

for(x = 0; x < term.col; x++) { gp = &term.line[y][x]; - if(!(is_selected = selected(x, y))) + if(!(is_selected = selected(x, y)) + || !(gp->state & GLYPH_SET)) { continue; - p = (gp->state & GLYPH_SET) ? gp->c : " "; - size = utf8size(p); - memcpy(ptr, p, size); + } + size = utf8size(gp->c); + memcpy(ptr, gp->c, size); ptr += size; } /* \n at the end of every selected line except for the last one */