st
simple terminal
git clone https://9o.is/git/st.git
commit 81a048d6cfda84a06353911130fee029df077c8d parent b61afd24be566d8c8d7d5310fdad973441139428 Author: Aurélien Aptel <aurelien.aptel@gmail.com> Date: Fri, 19 Nov 2010 22:32:39 +0100 clean comment regarding redrawing in bmotion(). Diffstat:
| M | st.c | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/st.c b/st.c @@ -522,7 +522,9 @@ static void brelease(XEvent *e) { static void bmotion(XEvent *e) { if (sel.mode) { getbuttoninfo(e, NULL, &sel.ex, &sel.ey); - // draw(1); + /* XXX: draw() can't keep up, disabled for now. + selection is visible on button release. + draw(1); */ } }