Plugin: intelligent auto completion based on letter hints

已回答

Intellij's auto-completion employs a smart filtering of auto-complete entries based on letters typed, i.e.  tis   will show 'ThisIsSomething' as an entry.  Is it possible for 'TextFieldWithAutoCompletion' do that?

 

0
正式评论

Yes. Please override TextFieldWithAutoCompletionListProvider#createPrefixMatcher and return a CamelHumpMatcher from there.

请先登录再写评论。