Example usage for com.intellij.openapi.actionSystem AbbreviationManager findActions

List of usage examples for com.intellij.openapi.actionSystem AbbreviationManager findActions

Introduction

In this page you can find the example usage for com.intellij.openapi.actionSystem AbbreviationManager findActions.

Prototype

@NotNull
    public abstract List<String> findActions(@NotNull String abbreviation);

Source Link

Usage

From source file:com.codeflections.typengo.ActionFinder.java

License:Open Source License

private static List<String> tryFindWithSuffix(@NotNull String abbreviation) {
    final AbbreviationManager abbreviationManager = AbbreviationManager.getInstance();
    return abbreviationManager.findActions(abbreviation);
}