in src/dotnet/JetBrains.PresentationAssistant/VisualStudio/VsShortcutFinder.cs [53:63]
public ActionShortcut GetVsShortcut(IEnvDteCommand command)
{
var binding = GetFirstBinding(command.Bindings);
if (binding != null)
{
// Can use ShortcutUtil.BindingsToShortcut
// But would need to globalize the string?
return ToActionShortcut(binding);
}
return null;
}