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,

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 a...@esperanto.org.ar 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

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? 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 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.