in src/dotnet/JetBrains.PresentationAssistant/PresentationAssistant.cs [65:81]
public void TrackActivity(string activityGroup, string activityId, int count = 1)
{
if (!enabled
|| activityGroup != "VsAction"
|| ActionIdBlocklist.IsBlocked(activityId))
{
return;
}
// TODO: "BulbAction" gives full type name of quick fix or context action.
// IContextActionInfo.Name would give a name to display. Get all context
// actions via IContextActionTable.AllActions (refresh when types change
// available in ShellPartCatalogueType), keyed on ICAI.ActionKey.
// QuickFix doesn't have a name, instance returns bulb actions with text.
// Don't think it's possible to get a friendly name
OnAction(activityId);
}