Re: [dev] st patch: rectangular selection support

2013-02-19 Thread Christoph Lohmann
Greetings. On Tue, 19 Feb 2013 15:54:06 +0100 Alexander Sedov alex0pla...@gmail.com wrote: This patch adds support for rectangular selections a-la urxvt, which come in handy when using applications like irssi or mcabber. You are commenting out code and leave it there without any notice, if it

Re: [dev] Re: st colour shenanigans

2013-02-19 Thread Christoph Lohmann
Greetings. On Tue, 19 Feb 2013 15:53:15 +0100 Alexander Sedov alex0pla...@gmail.com wrote: St colour shenanigans part two: I read the code of Xft library and figured out what the error is. This patch is really really simple (and is made relative to prior-first-patch) and finally fixes color

Re: [dev] st patch: rectangular selection support

2013-02-19 Thread Alexander Sedov
Here it is, the new version. 2013/2/19 Christoph Lohmann 2...@r-36.net Greetings. On Tue, 19 Feb 2013 15:54:06 +0100 Alexander Sedov alex0pla...@gmail.com wrote: This patch adds support for rectangular selections a-la urxvt, which come in handy when using applications like irssi or

[dev] Makefile/markdown based static site generator

2013-02-19 Thread Kai Hendry
Hey guys, https://github.com/kaihendry/sg-hackandtell/blob/master/Makefile For bonus points I have a plan9 mk version here: https://github.com/kaihendry/sg-hackandtell/blob/master/mkfile Enjoy and I would love to hear if it could suck less or if there are similar projects I could learn from.

Re: [dev] Makefile/markdown based static site generator

2013-02-19 Thread Nick
I tend to do variations on the theme of the attached, nowadays. I used to have a shell find thing, but got rid of it as it was slow over a large directory (particularly fuse-ssh mounted), and also I don't think it's standard Make. For that matter nor is the % syntax that you use, but I appreciate

Re: [dev] Makefile/markdown based static site generator

2013-02-19 Thread Brandon Invergo
Kai Hendry hen...@iki.fi writes: https://github.com/kaihendry/sg-hackandtell/blob/master/Makefile For bonus points I have a plan9 mk version here: https://github.com/kaihendry/sg-hackandtell/blob/master/mkfile Enjoy and I would love to hear if it could suck less or if there are similar

[dev] [PATCH] Added basic xterm-ish palette swap support.

2013-02-19 Thread Alexander Sedov
--- st.c | 111 +++--- 1 file changed, 93 insertions(+), 18 deletions(-) diff --git a/st.c b/st.c index 4b21380..82f935b 100644 --- a/st.c +++ b/st.c @@ -302,6 +302,7 @@ static void execsh(void); static void sigchld(int); static void

Re: [dev] [PATCH] Added basic xterm-ish palette swap support.

2013-02-19 Thread Christoph Lohmann
Greetings. On Tue, 19 Feb 2013 19:14:18 +0100 Alexander Sedov alex0pla...@gmail.com wrote: --- st.c | 111 +++--- 1 file changed, 93 insertions(+), 18 deletions(-) Thanks, it’s applied. What’s the application needing this?

Re: [dev] st patch: rectangular selection support

2013-02-19 Thread Alexander Sedov
Enjoy these well-formed patches. 2013/2/19 Alexander Sedov alex0pla...@gmail.com Here it is, the new version. 2013/2/19 Christoph Lohmann 2...@r-36.net Greetings. On Tue, 19 Feb 2013 15:54:06 +0100 Alexander Sedov alex0pla...@gmail.com wrote: This patch adds support for rectangular

Re: [dev] [PATCH] Added basic xterm-ish palette swap support.

2013-02-19 Thread Alexander Sedov
While writing this patch, I accidentally intoduced off-by-one error that caused empty terminal window names and could, in theory, lead to crash. This patch is fixing this accident. 2013/2/19 Christoph Lohmann 2...@r-36.net Greetings. On Tue, 19 Feb 2013 19:14:18 +0100 Alexander Sedov

Re: [dev] Makefile/markdown based static site generator

2013-02-19 Thread Sam Watkins
Makefile/markdown based static site generator I did something similar, but without having looked at your code yet I can tell you that yours sucks less than mine! hehe

Re: [dev] Makefile/markdown based static site generator

2013-02-19 Thread Carlos Torres
i started looking through the repo and found the list thingy list/maillist it looks like the List-Unsubscribe header http url says unsub rather than unsubscribe on line 28, not sure if thats correct. also isn't it even better etiquette to also include a mailto url in the List-Unsubscribe header.

Re: [dev] Makefile/markdown based static site generator

2013-02-19 Thread Kai Hendry
Hey Carlos, thanks for taking a look. On 20 February 2013 12:29, Carlos Torres vlaadbr...@gmail.com wrote: i started looking through the repo and found the list thingy list/maillist it looks like the List-Unsubscribe header http url says unsub rather than unsubscribe on line 28, not sure if

Re: [dev] Makefile/markdown based static site generator

2013-02-19 Thread Carlos Torres
On Tue, Feb 19, 2013 at 11:52 PM, Kai Hendry hen...@iki.fi wrote: https://github.com/kaihendry/sg-hackandtell/blob/master/.htaccess Ah i missed that rewrite :p

Re: [dev] Re: st colour shenanigans

2013-02-19 Thread Charlie Kester
On 02/19/2013 06:53, Christoph Lohmann wrote: Greetings. On Tue, 19 Feb 2013 15:53:15 +0100 Alexander Sedovalex0pla...@gmail.com wrote: St colour shenanigans part two: I read the code of Xft library and figured out what the error is. This patch is really really simple (and is made relative