You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Editor and Version (VS Code, Atom, Sublime): vscode 1.42.0-insiders
Your primary theme: Monokai
Issue Description
From my tests, this seems to only happen if the colon is followed by some sort of special character such as - @ / etc
Screenshots
Expected Behavior
It should parse correctly, like this (taken from windows powershell). Notice that the colon is green, since it "belongs" to the variable:
Code Samples
$ip="192.1.1.1"###not being parsed###"pi@$ip:/home/pi/PowerShell_IoT/""pi@$ip:-home/pi/PowerShell_IoT/""pi@$ip:@home/pi/PowerShell_IoT/"###parsed correctly when without special characters###"pi@$ip:home/pi/PowerShell_IoT/"###correct syntax###"pi@$ip`:/home/pi/PowerShell_IoT/"```