pinosaur
/
st.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c371fe5
)
Strip trailing spaces from lines when copying selection.
author
Alexander Sedov
<alex0player@gmail.com>
Sun, 14 Apr 2013 19:17:44 +0000
(23:17 +0400)
committer
Christoph Lohmann
<20h@r-36.net>
Sun, 14 Apr 2013 19:32:53 +0000
(21:32 +0200)
Signed-off-by: Christoph Lohmann <20h@r-36.net>
st.c
patch
|
blob
|
history
diff --git
a/st.c
b/st.c
index
7250da2
..
56dc94c
100644
(file)
--- a/
st.c
+++ b/
st.c
@@
-773,7
+773,8
@@
selcopy(void) {
gp = &term.line[y][0];
last = gp + term.col;
- while(--last >= gp && !(last->state & GLYPH_SET))
+ while(--last >= gp && !((last->state & GLYPH_SET) && \
+ selected(last - gp, y) && strcmp(last->c, " ") != 0))
/* nothing */;
for(x = 0; gp <= last; x++, ++gp) {