private string HandleActiveHotspots()

in src/dotnet/JetBrains.PresentationAssistant/ReSharperActionShortcutProvider.cs [87:100]


        private string HandleActiveHotspots(string actionId)
        {
            switch (actionId)
            {
                case "TextControl.Enter":
                case "TextControl.Tab":
                    return "Synthetic.NextHotspot";

                case "TabLeft":
                    return "Synthetic.PreviousHotspot";
            }

            return actionId;
        }