Re: [dev] [st] mouse up scrolling not working in vim through tmux in st

2014-06-01 Thread Balazs Kezes
On 2014-06-01 15:58 +0200, Christoph Lohmann wrote: > > Sidenote: while looking at tmux under st I experienced a lot of > > other rendering problems. I suspect this is because st's VT100 > > emulation is a bit weak. In case this is something the suckless > > community would like to fix, I recommend

Re: [dev] [st] mouse up scrolling not working in vim through tmux in st

2014-06-01 Thread Jay Rajput
Verified. The changes have solved the problem. Both scroll up and down are working for me. I am testing on code from the git repo. [root@work st]# sed -ne '829,833{p}' st.c /* MODE_MOUSEX10: no button release reporting */ if(IS_SET(MODE_MOUSEX10))

Re: [dev] [st] [PATCH] Refactor xsetcolorname()

2014-06-01 Thread FRIGN
On Sun, 01 Jun 2014 16:20:44 +0200 Christoph Lohmann <2...@r-36.net> wrote: > The xsetcolorname() function should be conservative in its input. Since > it is only called from escape input it shouldn’t overwrite a dc.col if > something failed. I fixed this and refactored to the function accordi

Re: [dev] [st] [PATCH] Refactor xsetcolorname()

2014-06-01 Thread Christoph Lohmann
Greetings. On Sun, 01 Jun 2014 16:20:44 +0200 FRIGN wrote: > Hello, > > attached is a small patch to refactor xsetcolorname(). > Note the high similarity to xloadcols(). I wonder how necessary it is > to realloc if name==NULL, given dc.col[] is only read except in > xloadcols(), where exactly th

Re: [dev] [tabbed PATCH] Replace emallocz with ecalloc.

2014-06-01 Thread Christoph Lohmann
Greetings. On Sun, 01 Jun 2014 16:14:22 +0200 noname wrote: > [...] Thanks, applied. Sincerely, Christoph Lohmann

Re: [dev] [surf] WebKit1 deprecated

2014-06-01 Thread Christoph Lohmann
Greetings. On Sun, 01 Jun 2014 16:03:19 +0200 YpN wrote: > Hi, > > I plan to use surf as my primary browser and few weeks ago I decided > to compile WebKitGTK 2.4.0. After that release, WebKit1 won't be > included[1] in the tarballs. > Actually, I like to compile the last WebKitGTK release for m

Re: [dev] [st] mouse up scrolling not working in vim through tmux in st

2014-06-01 Thread Christoph Lohmann
Greetings. On Sun, 01 Jun 2014 15:58:13 +0200 Balazs Kezes wrote: > On 2014-05-31 20:35 +0530, Jay Rajput wrote: > > Problem Statement: Mouse up scrolling not working in vim through tmux > > in st. Mouse down scrolling works fine. > > Thou shall not report release events for mouse wheel events.