diff --git a/languages/powershell/brackets.scm b/languages/powershell/brackets.scm index a61e153..7255b6d 100644 --- a/languages/powershell/brackets.scm +++ b/languages/powershell/brackets.scm @@ -1,4 +1,11 @@ -("@(" @open ")" @close) -("[" @open "]" @close) -("{" @open "}" @close) -("\"" @open "\"" @close) +("@(" @open + ")" @close) + +("[" @open + "]" @close) + +("{" @open + "}" @close) + +("\"" @open + "\"" @close) diff --git a/languages/powershell/highlights.scm b/languages/powershell/highlights.scm index c3074b6..a7b6599 100644 --- a/languages/powershell/highlights.scm +++ b/languages/powershell/highlights.scm @@ -46,7 +46,6 @@ "workflow" ] @keyword - [ "-as" "-ccontains" @@ -119,10 +118,10 @@ ";" ] @punctuation.delimiter - (string_literal) @string (integer_literal) @number + (real_literal) @number (command diff --git a/languages/powershell/indents.scm b/languages/powershell/indents.scm index d86c961..7ebe071 100644 --- a/languages/powershell/indents.scm +++ b/languages/powershell/indents.scm @@ -1,2 +1,7 @@ -(_ "{" "}" @end) @indent -(_ "@(" ")" @end) @indent +(_ + "{" + "}" @end) @indent + +(_ + "@(" + ")" @end) @indent