Skip to content

Commit 6ad56ad

Browse files
Fix typo in session.ts and remove deprecated whitespaceAroundPipe setting from package.json
Agent-Logs-Url: https://github.com/PowerShell/vscode-powershell/sessions/608cb061-0790-485f-9613-43fabdaa403f Co-authored-by: andyleejordan <2226434+andyleejordan@users.noreply.github.com>
1 parent cadddf0 commit 6ad56ad

3 files changed

Lines changed: 3 additions & 9 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -864,12 +864,6 @@
864864
"default": false,
865865
"markdownDescription": "Removes redundant whitespace between parameters."
866866
},
867-
"powershell.codeFormatting.whitespaceAroundPipe": {
868-
"type": "boolean",
869-
"default": true,
870-
"markdownDescription": "**Deprecated:** Please use the `#powershell.codeFormatting.addWhitespaceAroundPipe#` setting instead. If you've used this setting before, we have moved it for you automatically.",
871-
"markdownDeprecationMessage": "**Deprecated:** Please use the `#powershell.codeFormatting.addWhitespaceAroundPipe#` setting instead. If you've used this setting before, we have moved it for you automatically."
872-
},
873867
"powershell.codeFormatting.addWhitespaceAroundPipe": {
874868
"type": "boolean",
875869
"default": true,

src/session.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ export class SessionManager implements Middleware {
352352
// Reset the version and PowerShell details since we're launching a
353353
// new executable.
354354
this.logger.writeDebug(
355-
`Starting with executable overriden to: ${exeNameOverride}`,
355+
`Starting with executable overridden to: ${exeNameOverride}`,
356356
);
357357
this.powerShellVersionOverride = exeNameOverride;
358358
this.versionDetails = undefined;

0 commit comments

Comments
 (0)