SublimeText / PowerShell

Support for the MS PowerShell programming language.
MIT License
313 stars 78 forks source link

Here String is breaking syntax #118

Closed noesberger closed 9 years ago

noesberger commented 9 years ago

Hi

When I have a Powershell here string $x = @" "blala balal balal" "@

and the last row is inlined ("@) with space or tab, it's breaking the highlighting for the code that is following.

Does anyone else have the same error?

vors commented 9 years ago

Do you mean

$x = @"
"blala
balal
balal" 
    "@

?

Jaykul commented 9 years ago

inlined or indented?

If it's indented like @vors wrote, that's not a valid here-string.

noesberger commented 9 years ago

Sorry, indented. Ok, then it's my fault. Thanks for your fast reply