Skip to content

Commit 13df858

Browse files
committed
Set EnableProfileLoading default to true
So it can be turned off if needed, but otherwise has a sane default.
1 parent d198694 commit 13df858

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/PowerShellEditorServices/Server/PsesLanguageServer.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,11 @@ public async Task StartAsync()
141141
JObject initializationOptions = initializeParams.InitializationOptions as JObject;
142142
HostStartOptions hostStartOptions = new()
143143
{
144-
LoadProfiles = initializationOptions?.GetValue("EnableProfileLoading")?.Value<bool>() ?? false,
144+
// TODO: We need to synchronize our "default" settings as specified
145+
// in the VS Code extension's package.json with the actual default
146+
// values in this project. For now, this is going to be the most
147+
// annoying setting, so we're defaulting this to true.
148+
LoadProfiles = initializationOptions?.GetValue("EnableProfileLoading")?.Value<bool>() ?? true,
145149
// TODO: Consider deprecating the setting which sets this and
146150
// instead use WorkspacePath exclusively.
147151
InitialWorkingDirectory = initializationOptions?.GetValue("InitialWorkingDirectory")?.Value<string>() ?? workspaceService.WorkspacePath

0 commit comments

Comments
 (0)