Re: Metaprogramming in D

2009-07-29 Thread Walter Bright
Good catch, thanks!

Re: Metaprogramming in D

2009-07-29 Thread Sergey Gromov
Fri, 24 Jul 2009 02:35:33 -0700, Walter Bright wrote: > Looks like Bartosz has posted the video of one of my presentations to > the NWCPP! > > http://www.reddit.com/r/programming/comments/944gh/the_d_language_metaprogramming_language_is_d/ The slides have an error at 47:40, in supposedly genera

Re: Descent, now with Open Type Hierarchy

2009-07-29 Thread BCS
Major suggestion: The auto compleat drop down is very un-aggressive. I'd love to see it be Google style sort based rather than ordered-list/browse based. The kind of thing I'm thinking of is having a live sort of the options based on (among other things) what you have typed and the current co

Re: Descent, now with Open Type Hierarchy

2009-07-29 Thread The Anh Tran
Minor suggestion: import tango.text.Regex; int main() { // tango.text.Regex. return 0; } When i type "tango.text.Regex", then '.', Descent should list only elements inside module/namespace tango.text.Regex. Thanks.

Re: Descent, now with Open Type Hierarchy

2009-07-29 Thread Sergey Gromov
Sat, 25 Jul 2009 02:55:51 -0300, Ary Borenszweig wrote: > Ary Borenszweig escribió: >> Hi! >> >> I just uploaded a new version of Descent that implements the "Open Type >> Hierarchy" funcionality. > > And now that type hierarchy funcionality is in place, I implemented the > "override indicator

Re: Descent, now with Open Type Hierarchy

2009-07-29 Thread Trass3r
Just created a fresh project with a single file to test: /** * */ module main; import std.file; import std.stdio; void main() { writefln(""); read("test"); } Hovering over writefln works like a charm, also with Shift or Ctrl+Shift. Normal hovering over read also work

Re: Descent, now with Open Type Hierarchy

2009-07-29 Thread Ary Borenszweig
Trass3r wrote: Ary Borenszweig schrieb: Please report these things into the bug tracket: http://www.dsource.org/projects/descent/newticket I'd have done that, if I had managed to narrow down the problem. If you close and open all the projects, does it still happen?

Re: Descent, now with Open Type Hierarchy

2009-07-29 Thread Saaa
>> 2 is very nice towards the namespace >> how will you do regex.find vs string.find? > > Just what JDT does: show you the matches of "find" and allow you to choose > one of them. never used JDT for anything but your descent :) but I should have known this is handled nicely already

Re: Descent, now with Open Type Hierarchy

2009-07-29 Thread Ary Borenszweig
Saaa escribió: 2 is very nice towards the namespace how will you do regex.find vs string.find? Just what JDT does: show you the matches of "find" and allow you to choose one of them.

Re: Descent, now with Open Type Hierarchy

2009-07-29 Thread Saaa
2 is very nice towards the namespace how will you do regex.find vs string.find? "Ary Borenszweig" wrote in message news:h4pcpc$2ef...@digitalmars.com... > Qian Xu escribió: >> Ary Borenszweig wrote: >>> Enjoy :-) >> >> Great work. >> >> BTW: Is there any plan to make a "Organize Imports" feature

Re: Descent, now with Open Type Hierarchy

2009-07-29 Thread Ary Borenszweig
Qian Xu escribió: Ary Borenszweig wrote: Enjoy :-) Great work. BTW: Is there any plan to make a "Organize Imports" feature? It would be very helpful. Well... now that I've looked at some of JDT's code about this, seems a pretty hard thing to implement (to translate from Java to D, actually