DDT-IDE / DDT

DDT is an Eclipse-based IDE for the D programming language:
http://ddt-ide.github.io/
101 stars 16 forks source link

Completion proposal insertion text has incorrect casing #113

Closed mbierlee closed 9 years ago

mbierlee commented 9 years ago

Consider having variable "someStuff" available within the scope where you are typing now. When opening the auto complete proposal screen from nothing DDT will auto complete the variable name with proper casing. However, when you've already typed a part of the symbol:

auto otherStuff = somes

It will incorrectly autocomplete to:

auto otherStuff = somestuff

Basically anything that has been already typed will not be altered.

Make sure that the auto completer also replaces the auto completion hint with correct casing of the symbol which is being auto completed.