diff options
author | Georg Brandl <georg@python.org> | 2012-02-05 10:21:00 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-02-05 10:21:00 +0100 |
commit | 8cdcc1ed72f03f21cc2185ff863d76d8cda27171 (patch) | |
tree | ce78de42586224ba1a9df96b415b9ec0a61ca6b6 | |
parent | 2d96d6474a888e898fd772f8e6e125b873e7158a (diff) | |
download | pygments-8cdcc1ed72f03f21cc2185ff863d76d8cda27171.tar.gz |
Style fixes.
-rw-r--r-- | pygments/lexers/shell.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pygments/lexers/shell.py b/pygments/lexers/shell.py index 2e0d4223..e2fa5191 100644 --- a/pygments/lexers/shell.py +++ b/pygments/lexers/shell.py @@ -231,12 +231,12 @@ class TcshLexer(RegexLexer): r'continue|goto|breaksw|end|switch|endsw)\s*\b', Keyword), (r'\b(alias|alloc|bg|bindkey|break|builtins|bye|caller|cd|chdir|' - r'complete|dirs|echo|echotc|eval|exec|exit|' - r'fg|filetest|getxvers|glob|getspath|hashstat|history|hup|inlib|jobs|kill|' + r'complete|dirs|echo|echotc|eval|exec|exit|fg|filetest|getxvers|' + r'glob|getspath|hashstat|history|hup|inlib|jobs|kill|' r'limit|log|login|logout|ls-F|migrate|newgrp|nice|nohup|notify|' - r'onintr|popd|printenv|pushd|rehash|repeat|rootnode|popd|pushd|set|shift|' - r'sched|setenv|setpath|settc|setty|setxvers|shift|source|stop|suspend|' - r'source|suspend|telltc|time|' + r'onintr|popd|printenv|pushd|rehash|repeat|rootnode|popd|pushd|' + r'set|shift|sched|setenv|setpath|settc|setty|setxvers|shift|' + r'source|stop|suspend|source|suspend|telltc|time|' r'umask|unalias|uncomplete|unhash|universe|unlimit|unset|unsetenv|' r'ver|wait|warp|watchlog|where|which)\s*\b', Name.Builtin), |