Skip to content

Commit ff4f688

Browse files
committed
Update SettingsManager
1 parent 68e799d commit ff4f688

1 file changed

Lines changed: 11 additions & 22 deletions

File tree

WorkspaceLauncherForVSCode/Classes/SettingsManager.cs

Lines changed: 11 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -92,58 +92,50 @@ public class SettingsManager : JsonSettingsManager
9292

9393
private readonly ToggleSetting _showTypeTag = new(
9494
Namespaced(nameof(_showTypeTag)),
95-
"Show by Type\n" +
95+
"Show by Type",
9696
"e.g., Workspace, WSL, Codespaces, Dev Container, SSH Remote, Attached Container",
97-
"Tags to Show",
9897
true);
9998

10099
private readonly ToggleSetting _showTargetTag = new(
101100
Namespaced(nameof(_showTargetTag)),
102-
"Show by Target IDE\n" +
101+
"Show by Target IDE",
103102
"e.g., Visual Studio 2022, VS Code, VS Code - Insiders",
104-
"",
105103
false);
106104

107105
private readonly ToggleSetting _enableVisualStudio = new(
108106
Namespaced(nameof(_enableVisualStudio)),
109-
"Enable Visual Studio\n" +
107+
"Enable Visual Studio",
110108
"Loads solutions/projects from Visual Studio",
111-
"Enable Installations",
112109
true);
113110

114111
private readonly ToggleSetting _enableDefault = new(
115112
Namespaced(nameof(_enableDefault)),
116-
"Enable Visual Studio Code (User)\n" +
113+
"Enable Visual Studio Code (User)",
117114
"Loads folders/workspaces from the default Visual Studio Code installation",
118-
"",
119115
true);
120116

121117
private readonly ToggleSetting _enableSystem = new(
122118
Namespaced(nameof(_enableSystem)),
123-
"Enable Visual Studio Code (System)\n" +
119+
"Enable Visual Studio Code (System)",
124120
"Loads folders/workspaces from the system-wide Visual Studio Code installation",
125-
"",
126121
true);
127122

128123
private readonly ToggleSetting _enableInsider = new(
129124
Namespaced(nameof(_enableInsider)),
130-
"Enable Visual Studio Code (Insiders)\n" +
125+
"Enable Visual Studio Code (Insiders)",
131126
"Loads folders/workspaces from the Visual Studio Code Insiders version",
132-
"",
133127
false);
134128

135129
private readonly ToggleSetting _enableCustom = new(
136130
Namespaced(nameof(_enableCustom)),
137-
"Enable Visual Studio Code (Custom)\n" +
131+
"Enable Visual Studio Code (Custom)",
138132
"Loads folders/workspaces from custom Visual Studio Code installations found in your system PATH.",
139-
"",
140133
false);
141134

142135
private readonly ToggleSetting _enableCustomPath = new(
143136
Namespaced(nameof(_enableCustomPath)),
144-
"Enable Visual Studio Code (Custom Path for Portable mode)\n" +
137+
"Enable Visual Studio Code (Custom Path for Portable mode)",
145138
"If enabled, the Custom Visual Studio Code Path below will be used.",
146-
"",
147139
false);
148140

149141
private readonly TextSetting _customPath = new(
@@ -154,9 +146,8 @@ public class SettingsManager : JsonSettingsManager
154146

155147
private readonly ToggleSetting _enableCursor = new(
156148
Namespaced(nameof(_enableCursor)),
157-
"Enable Cursor\n" +
149+
"Enable Cursor",
158150
"Loads folders from Cursor",
159-
"",
160151
false);
161152

162153
private readonly TextSetting _cursorPath = new(
@@ -167,9 +158,8 @@ public class SettingsManager : JsonSettingsManager
167158

168159
private readonly ToggleSetting _enableAntigravity = new(
169160
Namespaced(nameof(_enableAntigravity)),
170-
"Enable Google Antigravity\n" +
161+
"Enable Google Antigravity",
171162
"Loads folders from Google Antigravity",
172-
"",
173163
false);
174164

175165
private readonly TextSetting _antigravityPath = new(
@@ -180,9 +170,8 @@ public class SettingsManager : JsonSettingsManager
180170

181171
private readonly ToggleSetting _enableWindsurf = new(
182172
Namespaced(nameof(_enableWindsurf)),
183-
"Enable Windsurf\n" +
173+
"Enable Windsurf",
184174
"Loads folders from Windsurf",
185-
"",
186175
false);
187176

188177
private readonly TextSetting _windsurfPath = new(

0 commit comments

Comments
 (0)