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
Hi there, very impressive work on the project. While implementing this and testing against PowerShell, I found a couple discrepancies that I wanted to report back. Namely, I found that the language definition was incorrect for string escapes (use backtick instead of backslash), and didn't recognize block comments (<# comments #>). I was able to resolve with the following change, though I'm not 100% sure of the escapes portion:
Hi there, very impressive work on the project. While implementing this and testing against PowerShell, I found a couple discrepancies that I wanted to report back. Namely, I found that the language definition was incorrect for string escapes (use backtick instead of backslash), and didn't recognize block comments (<# comments #>). I was able to resolve with the following change, though I'm not 100% sure of the escapes portion:
scopes: { string: [ ["\"", "\"", ["
""]], ["'", "'", ["\'"]] ], comment: [ ["#", "\n", null, true], ["<#", "#>", null, false] ] }
The text was updated successfully, but these errors were encountered: