diff options
author | Stefan Tatschner <stefan@sevenbyte.org> | 2014-01-10 13:51:55 +0100 |
---|---|---|
committer | Stefan Tatschner <stefan@sevenbyte.org> | 2014-01-10 13:51:55 +0100 |
commit | 5922fdc400a185a8f4ba8c9bf5bc4d399b55e1c1 (patch) | |
tree | f5b3b8e97b77289587872f60512ad71c35b0c065 | |
parent | 235425acf143fdb6b5c6ad6b0711ff416d9c005e (diff) | |
download | pygments-5922fdc400a185a8f4ba8c9bf5bc4d399b55e1c1.tar.gz |
Added PKGBUILD (Arch Linux buildscripts) filename to BashLexer
-rw-r--r-- | pygments/lexers/shell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/shell.py b/pygments/lexers/shell.py index 13b24562..4376611a 100644 --- a/pygments/lexers/shell.py +++ b/pygments/lexers/shell.py @@ -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 = { |