summaryrefslogtreecommitdiff
path: root/pygments/lexers/shell.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-11-06 12:16:06 +0100
committerGeorg Brandl <georg@python.org>2014-11-06 12:16:06 +0100
commitf8417e3412d061538ddff8b707048112120f3647 (patch)
treec768c9667bf86c03c0be69da1705d917a2413158 /pygments/lexers/shell.py
parent272429a2c5fc178f256a347c9d7642c6667b9a67 (diff)
downloadpygments-f8417e3412d061538ddff8b707048112120f3647.tar.gz
Simplify charclasses in a few more modules
Diffstat (limited to 'pygments/lexers/shell.py')
-rw-r--r--pygments/lexers/shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/shell.py b/pygments/lexers/shell.py
index 575e2525..1bbfd7a7 100644
--- a/pygments/lexers/shell.py
+++ b/pygments/lexers/shell.py
@@ -421,7 +421,7 @@ class PowerShellLexer(RegexLexer):
(r'[#&.]', Comment.Multiline),
],
'string': [
- (r"`[0abfnrtv'\"\$`]", String.Escape),
+ (r"`[0abfnrtv'\"$`]", String.Escape),
(r'[^$`"]+', String.Double),
(r'\$\(', Punctuation, 'child'),
(r'""', String.Double),