diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2012-03-10 00:32:27 -0300 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2012-03-10 00:32:27 -0300 |
commit | d761f76cb2491e4269638a4971dff6c26010c85f (patch) | |
tree | 8c264e95468dc25446411d15d5fa0d069ec2ef82 /pygments/lexers/shell.py | |
parent | 1782f5652f85665caded63bed1c923578050d820 (diff) | |
download | pygments-d761f76cb2491e4269638a4971dff6c26010c85f.tar.gz |
Added more vim and bash configuration file names.
Diffstat (limited to 'pygments/lexers/shell.py')
-rw-r--r-- | pygments/lexers/shell.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/lexers/shell.py b/pygments/lexers/shell.py index 8c78d158..61069f72 100644 --- a/pygments/lexers/shell.py +++ b/pygments/lexers/shell.py @@ -32,7 +32,8 @@ class BashLexer(RegexLexer): name = 'Bash' aliases = ['bash', 'sh', 'ksh'] - filenames = ['*.sh', '*.ksh', '*.bash', '*.ebuild', '*.eclass'] + filenames = ['*.sh', '*.ksh', '*.bash', '*.ebuild', '*.eclass', + '.bashrc', 'bashrc', '.bash_*', 'bash_*'] mimetypes = ['application/x-sh', 'application/x-shellscript'] tokens = { |