Re: Coloring terminal output.

2014-07-31 Thread ponce via Digitalmars-d-announce
On Monday, 14 July 2014 at 19:57:32 UTC, Suliman wrote: I've made a simple port of ruby's colorize library for D. I'd greatly appreciate any feedback. Windows isn't supported, yet. Cool! Would it be hard to add windows support? Windows support added. It relies on a partial ANSI/VT100

Re: Coloring terminal output.

2014-07-31 Thread Suliman via Digitalmars-d-announce
On Thursday, 31 July 2014 at 09:37:25 UTC, ponce wrote: On Monday, 14 July 2014 at 19:57:32 UTC, Suliman wrote: I've made a simple port of ruby's colorize library for D. I'd greatly appreciate any feedback. Windows isn't supported, yet. Cool! Would it be hard to add windows support? Windows

Re: Coloring terminal output.

2014-07-31 Thread ponce via Digitalmars-d-announce
On Thursday, 31 July 2014 at 12:09:41 UTC, Suliman wrote: On Thursday, 31 July 2014 at 09:37:25 UTC, ponce wrote: On Monday, 14 July 2014 at 19:57:32 UTC, Suliman wrote: I've made a simple port of ruby's colorize library for D. I'd greatly appreciate any feedback. Windows isn't supported, yet.

Re: Coloring terminal output.

2014-07-31 Thread Suliman via Digitalmars-d-announce
On Thursday, 31 July 2014 at 13:45:45 UTC, ponce wrote: On Thursday, 31 July 2014 at 12:09:41 UTC, Suliman wrote: On Thursday, 31 July 2014 at 09:37:25 UTC, ponce wrote: On Monday, 14 July 2014 at 19:57:32 UTC, Suliman wrote: I've made a simple port of ruby's colorize library for D. I'd

Re: Coloring terminal output.

2014-07-31 Thread John Colvin via Digitalmars-d-announce
On Thursday, 31 July 2014 at 17:01:22 UTC, Suliman wrote: On Thursday, 31 July 2014 at 13:45:45 UTC, ponce wrote: On Thursday, 31 July 2014 at 12:09:41 UTC, Suliman wrote: On Thursday, 31 July 2014 at 09:37:25 UTC, ponce wrote: On Monday, 14 July 2014 at 19:57:32 UTC, Suliman wrote: I've

Re: Coloring terminal output.

2014-07-27 Thread Ary Borenszweig via Digitalmars-d-announce
On 7/13/14, 5:11 PM, yamadapc wrote: Hello all :) I've made a simple port of ruby's colorize library for D. I'd greatly appreciate any feedback. Windows isn't supported, yet. Links: http://code.dlang.org/packages/colorize https://github.com/yamadapc/d-colorize

Re: Coloring terminal output.

2014-07-27 Thread Ary Borenszweig via Digitalmars-d-announce
On 7/27/14, 11:16 AM, Ary Borenszweig wrote: On 7/13/14, 5:11 PM, yamadapc wrote: Hello all :) I've made a simple port of ruby's colorize library for D. I'd greatly appreciate any feedback. Windows isn't supported, yet. Links: http://code.dlang.org/packages/colorize

Re: Coloring terminal output.

2014-07-27 Thread Ary Borenszweig via Digitalmars-d-announce
On 7/27/14, 11:31 AM, Ary Borenszweig wrote: On 7/27/14, 11:16 AM, Ary Borenszweig wrote: On 7/13/14, 5:11 PM, yamadapc wrote: Hello all :) I've made a simple port of ruby's colorize library for D. I'd greatly appreciate any feedback. Windows isn't supported, yet. Links:

Re: Coloring terminal output.

2014-07-16 Thread Lionello Lunesu via Digitalmars-d-announce
On 13/07/14 22:11, yamadapc wrote: Hello all :) I've made a simple port of ruby's colorize library for D. I'd greatly appreciate any feedback. Windows isn't supported, yet. Links: http://code.dlang.org/packages/colorize https://github.com/yamadapc/d-colorize

Re: Coloring terminal output.

2014-07-14 Thread Gary Willoughby via Digitalmars-d-announce
On Sunday, 13 July 2014 at 20:11:19 UTC, yamadapc wrote: Hello all :) I've made a simple port of ruby's colorize library for D. I'd greatly appreciate any feedback. Windows isn't supported, yet. Links: http://code.dlang.org/packages/colorize https://github.com/yamadapc/d-colorize

Re: Coloring terminal output.

2014-07-14 Thread Suliman via Digitalmars-d-announce
I've made a simple port of ruby's colorize library for D. I'd greatly appreciate any feedback. Windows isn't supported, yet. Cool! Would it be hard to add windows support?

Re: Coloring terminal output.

2014-07-14 Thread Adam D. Ruppe via Digitalmars-d-announce
On Monday, 14 July 2014 at 19:57:32 UTC, Suliman wrote: Cool! Would it be hard to add windows support? I don't think it can be done with this setup - the colorize thing returns a string, but Windows does color via API calls independently of the string. My terminal.d offers color output

Re: Coloring terminal output.

2014-07-14 Thread Ben Boeckel via Digitalmars-d-announce
On Mon, Jul 14, 2014 at 20:09:04 +, Adam D. Ruppe via Digitalmars-d-announce wrote: My terminal.d offers color output through special function calls: https://github.com/adamdruppe/arsd/blob/master/terminal.d Scanning this, I see missing termcap for screen and screen-256color which are

Re: Coloring terminal output.

2014-07-14 Thread yamadapc via Digitalmars-d-announce
On Monday, 14 July 2014 at 20:09:05 UTC, Adam D. Ruppe wrote: On Monday, 14 July 2014 at 19:57:32 UTC, Suliman wrote: Cool! Would it be hard to add windows support? I don't think it can be done with this setup - the colorize thing returns a string, but Windows does color via API calls

Re: Coloring terminal output.

2014-07-14 Thread Alexandre L. via Digitalmars-d-announce
On Tuesday, 15 July 2014 at 00:21:09 UTC, Alexandre L. wrote: On Monday, 14 July 2014 at 22:51:17 UTC, yamadapc wrote: On Monday, 14 July 2014 at 20:09:05 UTC, Adam D. Ruppe wrote: On Monday, 14 July 2014 at 19:57:32 UTC, Suliman wrote: Cool! Would it be hard to add windows support? I don't

Re: Coloring terminal output.

2014-07-14 Thread Alexandre L. via Digitalmars-d-announce
On Monday, 14 July 2014 at 22:51:17 UTC, yamadapc wrote: On Monday, 14 July 2014 at 20:09:05 UTC, Adam D. Ruppe wrote: On Monday, 14 July 2014 at 19:57:32 UTC, Suliman wrote: Cool! Would it be hard to add windows support? I don't think it can be done with this setup - the colorize thing

Coloring terminal output.

2014-07-13 Thread yamadapc via Digitalmars-d-announce
Hello all :) I've made a simple port of ruby's colorize library for D. I'd greatly appreciate any feedback. Windows isn't supported, yet. Links: http://code.dlang.org/packages/colorize https://github.com/yamadapc/d-colorize https://github.com/fazibear/colorize