Autocomplete close tag puts cursor in wrong position
Posted: Fri Oct 07, 2005 5:28 pm
This seems to be a change between 6.1.0 and 6.2.0.
I have the autocomplete on, against a real DTD. Win XP, JDK 1.5, Eclispe 3.1.
Oxygen does the right thing as I type, i.e.
<b CTRL-SPACE yields:
(the pipe marks the cursor position)
In my DTD, <binding> has an optional body and a mix of required
and optional attributes.
So I continue typing:
The cursor is just inside the '>'.
I type the '/' and Oxygen removed the </binding> tag and closes the <binding> tag ... but leaves the cursor in the wrong position.
I want the cursor to be outside the tag, after the '>'.
I'm pretty certain that 6.1.0 did what I wanted.
I have the autocomplete on, against a real DTD. Win XP, JDK 1.5, Eclispe 3.1.
Oxygen does the right thing as I type, i.e.
<b CTRL-SPACE yields:
Code: Select all
<binding name="|"></binding>
In my DTD, <binding> has an optional body and a mix of required
and optional attributes.
So I continue typing:
Code: Select all
<binding name="delegate" value="delegate"|></binding>
I type the '/' and Oxygen removed the </binding> tag and closes the <binding> tag ... but leaves the cursor in the wrong position.
Code: Select all
<binding name="name" value="delegate"/|>
I'm pretty certain that 6.1.0 did what I wanted.