Details
-
Improvement
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
None
-
None
-
None
Description
Ecipse Java editor provide two ways of completions :
- insert before (will insert the result of completion before the word just after cursor)
- replace (will replace the word just after cursor by the completion result) (with Ctrl modifier pressed)
IvyDE only offer the first mode. It should provide both.
Exemple :
- Existing
<dependency org="apache" name="commons-lang" rev="2.0"/>
will be replaced by
<dependency org="apache" name="commons-lang" rev="1.02.0"/>
- Wanted
<dependency org="apache" name="commons-lang" rev="2.0"/>
will be replaced by
<dependency org="apache" name="commons-lang" rev="1.0"/>