diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-06-07 17:37:15 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-06-07 17:37:15 +0200 |
commit | ff066ee9f001ee7c35bd78cc00fa253a238aacda (patch) | |
tree | 6068b72491c2a48082c2d428316ad68752d5f13f /syntax/ps1.vim | |
parent | 5b3866302755da9e5a917ca42a38a4a03fb5f3e5 (diff) | |
download | vim-polyglot-ff066ee9f001ee7c35bd78cc00fa253a238aacda.tar.gz vim-polyglot-ff066ee9f001ee7c35bd78cc00fa253a238aacda.zip |
Update
Diffstat (limited to 'syntax/ps1.vim')
-rw-r--r-- | syntax/ps1.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax/ps1.vim b/syntax/ps1.vim index 4bc74638..4a9751a8 100644 --- a/syntax/ps1.vim +++ b/syntax/ps1.vim @@ -84,7 +84,7 @@ syn match ps1Type /\[[a-z_][a-z0-9_.,\[\]]\+\]/ " Variable references syn match ps1ScopeModifier /\(global:\|local:\|private:\|script:\)/ contained syn match ps1Variable /\$\w\+\(:\w\+\)\?/ contains=ps1ScopeModifier -syn match ps1Variable /\${\w\+\(:\w\+\)\?}/ contains=ps1ScopeModifier +syn match ps1Variable /\${\w\+\(:\?[[:alnum:]_()]\+\)\?}/ contains=ps1ScopeModifier " Operators syn keyword ps1Operator -eq -ne -ge -gt -lt -le -like -notlike -match -notmatch -replace -split -contains -notcontains |