private string HandleActiveCodeCompletion()

in src/dotnet/JetBrains.PresentationAssistant/ReSharperActionShortcutProvider.cs [102:114]


        private string HandleActiveCodeCompletion(string actionId)
        {
            switch (actionId)
            {
                case "TextControl.Enter":
                    return "Synthetic.CompleteItem.Enter";

                case "TextControl.Tab":
                    return "Synthetic.CompleteItem.Tab";
            }

            return actionId;
        }