Skip to content

Commit 199cf55

Browse files
bergmeisterTylerLeonhardt
authored andcommitted
Fix UseCorrectCasing to be actually configurable via"powershell.codeFormatting.useCorrectCasing" (#910)
* Make UseCorrectCasing configurable as "powershell.codeFormatting.useCorrectCasing" was not propagated correctly to PSES * re-trigger ci * remove global.json
1 parent e3a32df commit 199cf55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PowerShellEditorServices.Protocol/Server/LanguageServerSettings.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ private Hashtable GetCustomPSSASettingsHashtable(int tabSize, bool insertSpaces)
289289
{"CheckHashtable", AlignPropertyValuePairs}
290290
}},
291291
{"PSUseCorrectCasing", new Hashtable {
292-
{"Enable", true}
292+
{"Enable", UseCorrectCasing}
293293
}},
294294
}}
295295
};

0 commit comments

Comments
 (0)