c++ - Qt Creator autocomplete: Enable mid-string matching -
qt creator has autocomplete/intellisense feature, matches identifiers strictly start have typed:
for example, if have member called ui->label_4, , start typing ui->label, listed, if try typing ui->_4 or ui->l_4, not, because though _4 part of identifier, not start it.
example:

is there way enable mid-string matching in qt creator autocomplete? looked everywhere in options couldn't find anything.
my current version qt creator 2.8.1
i'm getting mid-string matching behavior default in qt creator 3.0. don't recall ever seeing behavior in prior versions of qt creator.

Comments
Post a Comment