GitUI.FormSettings.SolveEditor C# (CSharp) Метод

SolveEditor() приватный статический Метод

private static SolveEditor ( ) : bool
Результат bool
        private static bool SolveEditor()
        {
            GitCommands.GitCommands gitCommands = new GitCommands.GitCommands();
            string editor = gitCommands.GetGlobalSetting("core.editor");
            if (string.IsNullOrEmpty(editor))
            {
                gitCommands.SetGlobalSetting("core.editor", "\"" + GetGitExtensionsFullPath() + "\" fileeditor");
            }

            return true;
        }
FormSettings