We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 565309e commit 1600cd7Copy full SHA for 1600cd7
1 file changed
WorkspaceLauncherForVSCode/Classes/SettingsManager.cs
@@ -74,9 +74,9 @@ public class SettingsManager : JsonSettingsManager
74
75
private static readonly List<ChoiceSetSetting.Choice> _terminalTypeChoices =
76
[
77
+ new ChoiceSetSetting.Choice("Windows Terminal (Default Profile)", nameof(TerminalType.WindowsTerminal)),
78
new ChoiceSetSetting.Choice("PowerShell", nameof(TerminalType.PowerShell)),
79
new ChoiceSetSetting.Choice("Command Prompt", nameof(TerminalType.Cmd)),
- new ChoiceSetSetting.Choice("Windows Terminal (Default Profile)", nameof(TerminalType.WindowsTerminal)),
80
];
81
82
private readonly ToggleSetting _enableLogging = new(
0 commit comments