Re: DlangIDE

2015-02-06 Thread Chris via Digitalmars-d-announce
On Friday, 6 February 2015 at 17:44:04 UTC, Vadim Lopatin wrote: On Friday, 6 February 2015 at 15:17:53 UTC, Chris wrote: On Friday, 6 February 2015 at 14:43:02 UTC, Vadim Lopatin wrote: On Friday, 6 February 2015 at 14:32:24 UTC, Chris wrote: On Friday, 6 February 2015 at 14:03:07 UTC, Vadim

Re: SublimeLinter D Plugin

2015-02-06 Thread Brian Schott via Digitalmars-d-announce
On Friday, 6 February 2015 at 13:58:13 UTC, Andrej Mitrovic wrote: Do we have a Sublime plugin based on D-Scanner which gives us some features like: - List all methods in a class - Hide (or just fold) non-public methods of a class And other similar features? No, because you haven't written

Re: Tkd - Cross platform GUI toolkit based on Tcl/Tk

2015-02-06 Thread Jack via Digitalmars-d-announce
I've been using this for learning experience and tried to use .jpg for the Image Object in vain. Are there plans to include jpg support here? Or is there a workaround for that? or can I use other image libraries to embed it to a Label Object or Button Object?

Re: Martin Nowak is our new release czar

2015-02-06 Thread Iain Buclaw via Digitalmars-d-announce
On 5 Feb 2015 00:10, Andrei Alexandrescu via Digitalmars-d-announce digitalmars-d-announce@puremagic.com wrote: Andrew Edwards, our former release czar, declined his czardom because he went to college. Thanks and good luck! He left a void of power. After a period of turmoil and intestine

Re: DlangIDE

2015-02-06 Thread John Colvin via Digitalmars-d-announce
On Friday, 6 February 2015 at 14:03:07 UTC, Vadim Lopatin wrote: Hello, I'm working on cross-platform D language IDE - DlangIDE. It's written in D using DlangUI based GUI. Project on GitHub: https://github.com/buggins/dlangide It's in alpha stage but already allows: * Open DUB based projects

Re: DlangIDE

2015-02-06 Thread Chris via Digitalmars-d-announce
On Friday, 6 February 2015 at 14:03:07 UTC, Vadim Lopatin wrote: Hello, I'm working on cross-platform D language IDE - DlangIDE. It's written in D using DlangUI based GUI. Project on GitHub: https://github.com/buggins/dlangide It's in alpha stage but already allows: * Open DUB based projects

DlangIDE

2015-02-06 Thread Vadim Lopatin via Digitalmars-d-announce
Hello, I'm working on cross-platform D language IDE - DlangIDE. It's written in D using DlangUI based GUI. Project on GitHub: https://github.com/buggins/dlangide It's in alpha stage but already allows: * Open DUB based projects * Edit source files * Build and run projects using DUB * D source

Re: DlangIDE

2015-02-06 Thread Vadim Lopatin via Digitalmars-d-announce
On Friday, 6 February 2015 at 14:23:28 UTC, John Colvin wrote: On Friday, 6 February 2015 at 14:03:07 UTC, Vadim Lopatin wrote: Hello, I'm working on cross-platform D language IDE - DlangIDE. It's written in D using DlangUI based GUI. Project on GitHub: https://github.com/buggins/dlangide

Re: DlangIDE

2015-02-06 Thread Vadim Lopatin via Digitalmars-d-announce
On Friday, 6 February 2015 at 14:32:24 UTC, Chris wrote: On Friday, 6 February 2015 at 14:03:07 UTC, Vadim Lopatin wrote: Hello, I'm working on cross-platform D language IDE - DlangIDE. It's written in D using DlangUI based GUI. Project on GitHub: https://github.com/buggins/dlangide ...

Re: Coedit alpha 11 released

2015-02-06 Thread Baz via Digitalmars-d-announce
On Thursday, 22 January 2015 at 09:44:28 UTC, Jordi Sayol wrote: El 21/01/15 a les 18:35, Basile Burg via Digitalmars-d-announce ha escrit: I'm glad to announce this new release of Coedit. Congratulations for this new release! Did you fix the use of DCD simultaneously with other D editors?

Re: DlangIDE

2015-02-06 Thread Chris via Digitalmars-d-announce
On Friday, 6 February 2015 at 14:43:02 UTC, Vadim Lopatin wrote: On Friday, 6 February 2015 at 14:32:24 UTC, Chris wrote: On Friday, 6 February 2015 at 14:03:07 UTC, Vadim Lopatin wrote: Hello, I'm working on cross-platform D language IDE - DlangIDE. It's written in D using DlangUI based GUI.

Re: SublimeLinter D Plugin

2015-02-06 Thread Andrej Mitrovic via Digitalmars-d-announce
On 9/16/14, Brian Schott via Digitalmars-d-announce digitalmars-d-announce@puremagic.com wrote: Several of my co-workers use Sublime Text and wanted D-Scanner to work with SublimeLinter, so here it is. https://github.com/economicmodeling/SublimeLinter-dscanner Do we have a Sublime plugin

Re: DlangIDE

2015-02-06 Thread Vadim Lopatin via Digitalmars-d-announce
On Friday, 6 February 2015 at 15:17:53 UTC, Chris wrote: On Friday, 6 February 2015 at 14:43:02 UTC, Vadim Lopatin wrote: On Friday, 6 February 2015 at 14:32:24 UTC, Chris wrote: On Friday, 6 February 2015 at 14:03:07 UTC, Vadim Lopatin wrote: Hello, I'm working on cross-platform D language

Re: DlangIDE

2015-02-06 Thread ketmar via Digitalmars-d-announce
On Fri, 06 Feb 2015 17:44:03 +, Vadim Lopatin wrote: Shift left/right: tab / shift+tab Comment/uncomment: will add soon. What is best shortcut for it? ctrl+/ for line commenting, for example. signature.asc Description: PGP signature

Re: DlangIDE

2015-02-06 Thread Jeremy Powers via Digitalmars-d-announce
What is best shortcut for it? Ideally key shortcuts would match existing IDEs, so don't have to relearn. I'm used to these: https://www.jetbrains.com/idea/help/keyboard-shortcuts-and-mouse-reference.html (un/comment is ctrl+/ or cmd+/ on mac, ctrl+shift+/ for block comments)

Re: DlangIDE

2015-02-06 Thread extrawurst via Digitalmars-d-announce
Good work! On Friday, 6 February 2015 at 14:03:07 UTC, Vadim Lopatin wrote: * Code completion * Go to definition Please do not create yet another parser/lexer for this, looks like DCD would be a good fit for the job: https://github.com/Hackerpilot/DCD ~Stephan