diff options
author | Georg Brandl <georg@python.org> | 2014-01-17 06:53:47 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-01-17 06:53:47 +0100 |
commit | 8d58e854aea5a0061d4fd16e409d043fc402bacc (patch) | |
tree | bba45c4c616f884d2737350be84868fab2a574cd /pygments/lexers/shell.py | |
parent | 58ade6b658b910ad16f923e8376a2bb1a42625ee (diff) | |
parent | c1559dbaaf96b70f9d7f42639dcc90c1164762a7 (diff) | |
download | pygments-8d58e854aea5a0061d4fd16e409d043fc402bacc.tar.gz |
Merged in jiyinyiyong/pygments-main (pull request #275)
add syntax for Cirru
Diffstat (limited to 'pygments/lexers/shell.py')
-rw-r--r-- | pygments/lexers/shell.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/shell.py b/pygments/lexers/shell.py index 54c05530..4376611a 100644 --- a/pygments/lexers/shell.py +++ b/pygments/lexers/shell.py @@ -5,7 +5,7 @@ Lexers for various shells. - :copyright: Copyright 2006-2013 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2014 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -33,7 +33,7 @@ class BashLexer(RegexLexer): name = 'Bash' aliases = ['bash', 'sh', 'ksh'] filenames = ['*.sh', '*.ksh', '*.bash', '*.ebuild', '*.eclass', - '.bashrc', 'bashrc', '.bash_*', 'bash_*'] + '.bashrc', 'bashrc', '.bash_*', 'bash_*', 'PKGBUILD'] mimetypes = ['application/x-sh', 'application/x-shellscript'] tokens = { |