summaryrefslogtreecommitdiff
path: root/pygments/lexers/shell.py
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2012-03-10 00:32:27 -0300
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2012-03-10 00:32:27 -0300
commitd761f76cb2491e4269638a4971dff6c26010c85f (patch)
tree8c264e95468dc25446411d15d5fa0d069ec2ef82 /pygments/lexers/shell.py
parent1782f5652f85665caded63bed1c923578050d820 (diff)
downloadpygments-d761f76cb2491e4269638a4971dff6c26010c85f.tar.gz
Added more vim and bash configuration file names.
Diffstat (limited to 'pygments/lexers/shell.py')
-rw-r--r--pygments/lexers/shell.py3
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 = {