I recently bought a new keyboard and keep making spelling errors, closing the Content Assist midway. Is there any option within Eclipse preferences that let it stay open if at least some of the members have been found and spelled correctly?
For example if it suggests "myMethod()" and I write "myMb", Content Assist closes.
Eclipse does not feature a spelling error correcting content assist. I am also not aware of any plugins that do this.
What comes somewhat close is Eclipse Code Recommenders’ Subwords completion, which allows you to put in substrings of the method name, e.g.
myMd
would complete tomyMethod()
. However, when there are characters not part of the method’s name in your search string, the method won’t be found.