aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/fuzzymatcher.cpp
Commit message (Collapse)AuthorAgeFilesLines
* FileSystemFilter: Convert to FuzzyMatcherAndre Hartmann2019-08-151-0/+15
| | | | | | Fixes: QTCREATORBUG-18960 Change-Id: I7125362e77d7f079eec0cdcc270438cc98ca9407 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* FuzzyMatcher: Match mixed uppercase words and humpsAndre Hartmann2019-07-171-1/+1
| | | | | | | | | | | | | "htvideoele" did not match "HTMLVideoElement" before. This can easily be achieved by modifying the uppercase snake matcher and thus making the underscore between the letters optional. Fixes: QTCREATORBUG-19838 Change-Id: I821a68b20d40fb0843c12f43f47133833c75cb9b Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* FuzzyMatcher: Handle digits as camel humpAndre Hartmann2019-07-131-1/+1
| | | | | | | | | | Allow searching for "Fancy4PartThingy" with the more intuitive pattern "f4pt" as well as with the pattern "fpt" that already worked before. Fixes: QTCREATORBUG-22671 Change-Id: I3a7c1a5b7f57d2f2bdd7d0c6e23b46f6bbb64d77 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* FuzzyMatcher: Improve wildcard matchingOrgad Shaneh2017-11-041-2/+2
| | | | | | | | Make it equivalent to current wildcard implementation, and replace the current one with FuzzyMatcher. Change-Id: If83a4a8dfc7c8930bd92b49972647a519886a831 Reviewed-by: André Hartmann <aha_1980@gmx.de>
* Rename CamelHumpMatcher -> FuzzyMatcherOrgad Shaneh2017-11-021-0/+154
Change-Id: Ia8a2eeb985bcdd500b4faf9605e5092a52dad372 Reviewed-by: André Hartmann <aha_1980@gmx.de>