Descent 0.5.3 released

Jacob Carlborg doobnet at gmail.com
Fri Jan 2 13:57:07 PST 2009


Ary Borenszweig wrote:
> Jacob Carlborg Wrote:
> 
>> Ary Borenszweig wrote:
>>> Ary Borenszweig escribió:
>>>> Ary Borenszweig escribió:
>>>>> The Descent plugin for Eclipse provides an IDE for writing, launching 
>>>>> and debugging code in D.
>>>> Thank you all for the feedback!
>>>>
>>>> I just uploaded a new release (0.5.3.20081230)...
>>> Ok, I promise this is the last one in this year.
>>>
>>> I just uploaded another release (0.5.3.20081231) which adds some kind of 
>>> support for autocompletion, go-to-definition and semantic highlighting 
>>> inside templates. It is far from perfect, but comparing this to nothing 
>>> I think it's ok. This release also has an option to not insert 
>>> completion proposals when a dot is typed (as was suggested by Jacob 
>>> Carlborg).
>> Almost there. When pressing dot the second time the cursor is moved back 
>> one letter and ends up between the two dots instead of after the second dot.
> 
> Can you check this happens all the time? It happened to me in some cases, but I corrected them. I probably missed some others.

I have this example:

void main ()
{
	char[] str;
	char[] s = str[3.|]
}

"|" is the cursor, as usual. When I press dot here the cursor is moved 
back one letter or not moved forward and end up between the two dots 
like this:

void main ()
{
	char[] str;
	char[] s = str[3.|.]
}


/Jacob


More information about the Digitalmars-d-announce mailing list