New issue 91 by fintanbo...@gmail.com: Enhancement: case insensitive
content assist
http://code.google.com/p/eclihx/issues/detail?id=91
Describe your enhancement:
To make content assist:
(a) ignore the case of the identifier
(b) suggest completions that match the identifier starting at any index
position of the completion proposal (proposals are currently based
on 'startsWith()')
This will make it more like FlashDevelop and the Sublime haXe plugin
Solution:
Modify line 42 of eclihx.ui.internal.ui.editors.hx.ContentInfoCache with
this line:
if (contentInfo.getName().matches("(?i).*"+identPart+".*"))
Comment #1 on issue 91 by goodwi...@gmail.com: Enhancement: case
insensitive content assist
http://code.google.com/p/eclihx/issues/detail?id=91
(No comment was entered for this change.)
Comment #2 on issue 91 by goodwi...@gmail.com: Enhancement: case
insensitive content assist
http://code.google.com/p/eclihx/issues/detail?id=91
Fixed in trunk.
Fintan, thank you for the idea of the patch. I did a slightly more complex
solution with supporting abbreviations and priorities.
great stuff!