From 98c62cf5d2d76f9f5f4caa26568a886be0c0286b Mon Sep 17 00:00:00 2001 From: Lemon <11861253+justalemon@users.noreply.github.com> Date: Thu, 19 Apr 2018 06:21:07 -0300 Subject: [PATCH] Added menu option during install --- installer/install.iss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/installer/install.iss b/installer/install.iss index f51c914e1c..aab5a8f00c 100644 --- a/installer/install.iss +++ b/installer/install.iss @@ -1163,6 +1163,11 @@ begin CbbEditor.Items.Add('Use Visual Studio Code as Git'+#39+'s default editor'); CreateItemDescription(EditorPage,'(NEW!) Visual Studio Code is an Open Source, lightweight and powerful editor'+#13+'running as a desktop application. It comes with built-in support for JavaScript,'+#13+'TypeScript and Node.js and has a rich ecosystem of extensions for other'+#13+'languages (such as C++, C#, Java, Python, PHP, Go) and runtimes (such as'+#13+'.NET and Unity).'+#13+#13+'Use this option to let Git use Visual Studio Code as its default editor.',Top,Left,LblEditor[GE_VisualStudioCode],False); + // 5th choice + Top:=TopOfLabels; + CbbEditor.Items.Add('Use Visual Studio Code Insiders as Git'+#39+'s default editor'); + CreateItemDescription(EditorPage,'(NEW!) Visual Studio Code is an Open Source, lightweight and powerful editor'+#13+'running as a desktop application. It comes with built-in support for JavaScript,'+#13+'TypeScript and Node.js and has a rich ecosystem of extensions for other'+#13+'languages (such as C++, C#, Java, Python, PHP, Go) and runtimes (such as'+#13+'.NET and Unity).'+#13+#13+'Use this option to let Git use Visual Studio Code Insiders as its default editor.',Top,Left,LblEditor[GE_VisualStudioCodeInsiders],False); + // Restore the setting chosen during a previous install. case ReplayChoice('Editor Option','VIM') of 'Nano': CbbEditor.ItemIndex:=GE_Nano;