Example usage for com.intellij.openapi.options ShowSettingsUtil getSettingsMenuName

List of usage examples for com.intellij.openapi.options ShowSettingsUtil getSettingsMenuName

Introduction

In this page you can find the example usage for com.intellij.openapi.options ShowSettingsUtil getSettingsMenuName.

Prototype

public static String getSettingsMenuName() 

Source Link

Usage

From source file:com.intellij.ide.util.gotoByName.GotoActionModel.java

License:Apache License

@NotNull
String getGroupName(@NotNull OptionDescription description) {
    String id = description.getConfigurableId();
    String name = myConfigurablesNames.get(id);
    String settings = ShowSettingsUtil.getSettingsMenuName();
    if (name == null)
        return settings;
    return settings + " > " + name;
}