vscode-powershell
vscode-powershell copied to clipboard
Semantic Highlighting Meta Issue
Edit by @JustinGrote
A summary issue for existing semantic highlighting issues
Am seeing a likely-related issue where one commented line will be properly formatted (green & italic), then when commenting another line the hash mark is green and italic, but the leading variable token(?) is only italicized while the rest of the line is properly formatted.
Restarting the session will result in both lines being fully, correctly formatted.
VSCode 1.68.1
PowerShell Extension 2022.6.1
@AspenForester are you certain you've manually enabled semantic highlighting? It is off by default.
from settings.json
"[powershell]": {
"editor.semanticHighlighting.enabled": true,
}
Thanks for the confirmation!