Introduction
Introduction Statistics Contact Development Disclaimer Help
tTrim trailing whitespaces in every selection case - st - [fork] customized bui…
git clone git://src.adamsgaard.dk/st
Log
Files
Refs
README
LICENSE
---
commit 09f5d98251469070b76f3911cc6a83d977871656
parent 4418939dd9f3a7b3cfd3071234ed18ae86538f2a
Author: Ivan Delalande <[email protected]>
Date: Sun, 16 Nov 2014 09:02:57 +0100
Trim trailing whitespaces in every selection case
Trailing whitespaces are trimmed when copying from normal selection and
rectangular selection on lines that have their last character included
or on the left of the selection. It leads to inconsistent behaviors when
copying the exact same text from the left and right window in
applications with vertical splits.
This patch solves this issue by always trimming the selection.
Diffstat:
M st.c | 2 ++
1 file changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/st.c b/st.c
t@@ -947,6 +947,8 @@ getsel(void) {
lastx = (sel.ne.y == y) ? sel.ne.x : term.col-1;
}
last = &term.line[y][MIN(lastx, linelen-1)];
+ while(last >= gp && last->c[0] == ' ')
+ --last;
for( ; gp <= last; ++gp) {
if(gp->mode & ATTR_WDUMMY)
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.