PowerShell / EditorSyntax

PowerShell syntax highlighting for editors (VS Code, Atom, SublimeText, TextMate, etc.) and GitHub!
MIT License
133 stars 45 forks source link

";" scope goes against guidelines #114

Closed keith-hall closed 6 years ago

keith-hall commented 6 years ago

Environment

Issue Description

; is scoped wrongly as a keyword

Screenshots

image

Expected Behavior

; should be scoped as punctuation.terminator.statement. See http://www.sublimetext.com/docs/3/scope_naming.html#punctuation

Code Samples

Write-Host 'hello'; Write-Host 'world';