Re: [dev] [dvtm] [PATCH] Replace interpret_esc_xterm with interpret_osc.

2014-07-14 Thread Marc André Tanner
On Sun, Jul 13, 2014 at 10:51:02PM +0200, Mark Edgar wrote: The patch below fixes a bug where title changes are not recognized, e.g.: printf '\033];title\007' The missing parameter (before the semicolon) should be interpreted as 0. Thanks, applied! -- Marc André Tanner

[dev] [st] [PATCH] Changed inconsistent indent

2014-07-14 Thread Eric Pruitt
- A line was indented using spaces despite the rest of the code using tabs. --- st.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st.c b/st.c index b221f33..040638a 100644 --- a/st.c +++ b/st.c @@ -89,7 +89,7 @@ char *argv0; #define VT102ID \033[?6c enum

Re: [dev] [sandy] Implement copy/paste/replace?

2014-07-14 Thread Carlos Torres
if by copy paste you mean getting and putting text from the X selection stuff, like primary, secondary and clipboardi think shell stuff is enough, and allows for tools specifically made to handle that kind of stuff like xsel, xclipboard etc... if you mean yanking and putting, and visual

Re: [dev] [sandy] Implement copy/paste/replace?

2014-07-14 Thread Dimitris Zervas
On July 14, 2014 6:54:44 PM EEST, Carlos Torres vlaadbr...@gmail.com wrote: if by copy paste you mean getting and putting text from the X selection stuff, like primary, secondary and clipboardi think shell stuff is enough, and allows for tools specifically made to handle that kind of stuff

[dev] suckless arg.h

2014-07-14 Thread Weldon Goree
How much of util/ needs to be pulled in if one copies arg.h and its fairly awesome ARGBEGIN, etc.? Weldon

Re: [dev] suckless arg.h

2014-07-14 Thread Carlos Torres
Hello, On Mon, Jul 14, 2014 at 12:20 PM, Weldon Goree wel...@langurwallah.org wrote: How much of util/ needs to be pulled in if one copies arg.h and its fairly awesome ARGBEGIN, etc.? Weldon The arg.h header has everything it needs to exist on its own. without needing to pull anything else

Re: [dev] suckless arg.h

2014-07-14 Thread Dimitris Papastamos
On Mon, Jul 14, 2014 at 12:24:27PM -0400, Carlos Torres wrote: Hello, On Mon, Jul 14, 2014 at 12:20 PM, Weldon Goree wel...@langurwallah.org wrote: How much of util/ needs to be pulled in if one copies arg.h and its fairly awesome ARGBEGIN, etc.? Only thing that's required is to have a

Re: [dev] [sandy] Implement copy/paste/replace?

2014-07-14 Thread Charlie Kester
On Mon 14 Jul 2014 at 08:47:14 PDT Dimitris Zervas wrote: Hello guys, I just wanted your opinion in implementing a feature inside the code or calling it via sh. Which are the advantages for calling a script? Isn't it performance killer? The reason many editors took so many features onboard is

Re: [dev] suckless arg.h

2014-07-14 Thread Weldon Goree
On 07/14/2014 09:57 PM, Dimitris Papastamos wrote: so for a single foo.c: #include arg.h char *argv0; /* not static */ Ah, that was it. I had static char const *argv0; Removing the staticness fixed it. Weldon

Re: [dev] suckless arg.h

2014-07-14 Thread Carlos Torres
Hello, On Mon, Jul 14, 2014 at 1:16 PM, Weldon Goree wel...@langurwallah.org wrote: On 07/14/2014 09:54 PM, Carlos Torres wrote: Enjoy! I do! Huge thanks to all of those who made this. I think full credit goes to 20h :) --Carlos

Re: [dev] suckless arg.h

2014-07-14 Thread Dimitris Papastamos
On Mon, Jul 14, 2014 at 01:19:22PM -0400, Carlos Torres wrote: Hello, On Mon, Jul 14, 2014 at 1:16 PM, Weldon Goree wel...@langurwallah.org wrote: On 07/14/2014 09:54 PM, Carlos Torres wrote: Enjoy! I do! Huge thanks to all of those who made this. I think full credit goes to 20h

Re: [dev] suckless arg.h

2014-07-14 Thread Carlos Torres
On Mon, Jul 14, 2014 at 1:28 PM, Dimitris Papastamos d...@spl9.org wrote: On Mon, Jul 14, 2014 at 01:19:22PM -0400, Carlos Torres wrote: Hello, On Mon, Jul 14, 2014 at 1:16 PM, Weldon Goree wel...@langurwallah.org wrote: On 07/14/2014 09:54 PM, Carlos Torres wrote: Enjoy! I do! Huge

[dev] Looking for simple, alpha supporting image format

2014-07-14 Thread Charlie Murphy
Hello, Is there an image format that's simpler than PPM and that supports alpha transparency? PPM's syntax is too flexible; to parse an image you have to skip arbitrary whitespace in the header. You can't simply read() it. I'm looking for something like this[1] but with conversion tools for