I would like to append text in autoComplete instead of replace it. Is there any possibilities?
But I will be appreciated any help in the following problem:
I would like to use autoComplite in a path.
e.g.
car
car.small
car.big
car.big.red
car.big.blue
etc.
When I push ctrl+space on "car." I would like to show a list with "big" and "small" list items. After I push ctrl+space on "car.big" I would like to see list with "red" and "blue" list elements.
A put a keylistener to textArea and it is dynamic build the provider with properly list.
I have override getCompletionsImpl what is simple return the modifies list.
But unfortunatelly, the InsertCompletion method in AutoCompletion class replace text with item what selected in list.
I can't ovveride properly the InsertCompletion method in AutoCompletion class because some fields and methods are private.
I need a parameter or new InsertCompletion method what will append to alreadyEntered the selected text.
I have found a post with similar problem (AutoComplete instance of an object), but my problem is less difficult and I don't want to write a new LanguageSupport.
Any help is welcome!
