in idea-plugin/src/main/java/com/jetbrains/ide/streamdeck/keymap/ActionsTree.java [374:390]
public void selectAction(String actionId) {
String path = myMainGroup.getActionQualifiedPath(actionId, false);
String boundId = path == null ? ActionManagerEx.getInstanceEx().getActionBinding(actionId) : null;
if (path == null && boundId != null) {
path = myMainGroup.getActionQualifiedPath(boundId, false);
if (path == null) {
return;
}
}
final DefaultMutableTreeNode node = getNodeForPath(path);
if (node == null) {
return;
}
TreeUtil.selectInTree(node, true, myTree);
}