diff options
author | Micha? G?rny <mgorny@gentoo.org> | 2012-10-19 13:36:11 +0200 |
---|---|---|
committer | Micha? G?rny <mgorny@gentoo.org> | 2012-10-19 13:36:11 +0200 |
commit | 63be15a23baaa8d1d38a7287533bc3deafb1f2f0 (patch) | |
tree | c17ed3ee7cf6a861bda39b8ae2d2b20e84b5f4a5 /pygments/lexers/functional.py | |
parent | d9b7bd9b1a31b92c5dae2cbbd7db0aea93497b36 (diff) | |
download | pygments-63be15a23baaa8d1d38a7287533bc3deafb1f2f0.tar.gz |
Add vim-specific aliases for lexers.
Diffstat (limited to 'pygments/lexers/functional.py')
-rw-r--r-- | pygments/lexers/functional.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/functional.py b/pygments/lexers/functional.py index 39cf77f1..53554c09 100644 --- a/pygments/lexers/functional.py +++ b/pygments/lexers/functional.py @@ -718,7 +718,7 @@ class CommonLispLexer(RegexLexer): *New in Pygments 0.9.* """ name = 'Common Lisp' - aliases = ['common-lisp', 'cl'] + aliases = ['common-lisp', 'cl', 'lisp'] filenames = ['*.cl', '*.lisp', '*.el'] # use for Elisp too mimetypes = ['text/x-common-lisp'] @@ -1025,7 +1025,7 @@ class LiterateHaskellLexer(Lexer): *New in Pygments 0.9.* """ name = 'Literate Haskell' - aliases = ['lhs', 'literate-haskell'] + aliases = ['lhs', 'literate-haskell', 'lhaskell'] filenames = ['*.lhs'] mimetypes = ['text/x-literate-haskell'] |