Skip to content

Instantly share code, notes, and snippets.

@joerodgers
Created July 14, 2021 18:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joerodgers/74555d5d7b4349d9b2361b47ffa7d539 to your computer and use it in GitHub Desktop.
Save joerodgers/74555d5d7b4349d9b2361b47ffa7d539 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Change to allow double clicking variable that includes the "$" value. File location: "%AppData%\Roaming\Code\User\settings.json
{
"powershell.powerShellDefaultVersion": "PowerShell (x64)",
"powershell.codeFormatting.autoCorrectAliases": true,
"powershell.codeFormatting.useCorrectCasing": true,
"powershell.codeFormatting.whitespaceBetweenParameters": true,
"powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationAfterEveryPipeline",
"powershell.codeFormatting.trimWhitespaceAroundPipe": true,
"powershell.codeFormatting.openBraceOnSameLine": false,
"[powershell]": {
"editor.defaultFormatter": "ms-vscode.powershell"
},
"http.proxyAuthorization": null,
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"python.pythonPath": "C:\\Program Files\\Python\\python.exe",
"pesterExplorer.autoDiscoverOnOpen": true,
"[powershell]": {
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment