Files
openide/platform/util/text-matching
Tagir Valeev 29a3b8e35c [ui] SpeedSearch: support Pinyin matching (rewire via NameUtil.MatcherBuilder)
Partially fixes IDEA-255924 Unable to search item in the New popup when using the language pack
Partially fixes IDEA-257077 Add the Pinyin index support for the "Generate" popup after enabling the language pack

GitOrigin-RevId: fe9d76059658a98f89a1c52bcb7a500e726a5d5f
2022-01-12 05:32:41 +00:00
..

The module with utility methods for text matching features.

It is supposed to be shared with other project, including non-AWT one.

Thus the main rules of adding new method here are:

- avoid external dependencies such as JDOM, Log4j
- avoid dependencies on non-util IntelliJ-specific modules or using IntelliJ-specific classes such as Registry, Disposable, ProgressManager, etc.
- avoid using AWT or Swing classes there (Icon, KeyEvent, HTMLEditorKit, etc.)