summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-03-04 14:44:49 +0100
committerGeorg Brandl <georg@python.org>2014-03-04 14:44:49 +0100
commit2f43ee4c80b699800b7f7962b04aa9fbb35e65fa (patch)
treebe825afc4ec44ebf8ffb883d95ab3ba447be4744
parent18348a61d7e90b03a624fdc78fafdcb46b92307d (diff)
downloadpygments-2f43ee4c80b699800b7f7962b04aa9fbb35e65fa.tar.gz
Add authors/changelog for Idris, exempt the literate lexer from stripnl test
-rw-r--r--AUTHORS1
-rw-r--r--CHANGES1
-rw-r--r--tests/test_basic_api.py3
3 files changed, 4 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index cfa1e532..2d7572cb 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -115,6 +115,7 @@ Other contributors, listed alphabetically, are:
* Benjamin Peterson -- Test suite refactoring
* Dominik Picheta -- Nimrod lexer
* Clément Prévost -- UrbiScript lexer
+* raichoo -- Idris lexer
* Kashif Rasul -- CUDA lexer
* Justin Reidy -- MXML lexer
* Norman Richards -- JSON lexer
diff --git a/CHANGES b/CHANGES
index 08a97623..301e91f3 100644
--- a/CHANGES
+++ b/CHANGES
@@ -35,6 +35,7 @@ Version 2.0
* Eiffel (PR#273)
* Cirru (PR#275)
* ColdFusion CFC (PR#283)
+ * Idris (PR#210)
- New styles: "xcode" and "igor", similar to the default highlighting of
the respective IDEs.
diff --git a/tests/test_basic_api.py b/tests/test_basic_api.py
index 78227d2f..e89b5c31 100644
--- a/tests/test_basic_api.py
+++ b/tests/test_basic_api.py
@@ -100,7 +100,8 @@ def test_lexer_options():
'SqliteConsoleLexer', 'MatlabSessionLexer', 'ErlangShellLexer',
'BashSessionLexer', 'LiterateHaskellLexer', 'LiterateAgdaLexer',
'PostgresConsoleLexer', 'ElixirConsoleLexer', 'JuliaConsoleLexer',
- 'RobotFrameworkLexer', 'DylanConsoleLexer', 'ShellSessionLexer'):
+ 'RobotFrameworkLexer', 'DylanConsoleLexer', 'ShellSessionLexer',
+ 'LiterateIdrisLexer'):
inst = cls(ensurenl=False)
ensure(inst.get_tokens('a\nb'), 'a\nb')
inst = cls(ensurenl=False, stripall=True)