Metadata-Version: 2.1
Name: pygments-cl-repl
Version: 0.2.2
Summary: Pygments lexer for Common Lisp REPL
Author-email: Russell Sim <rsl@simopolis.xyz>
License: GPL-3.0-or-later
Project-URL: Homepage, https://git.sr.ht/~rsl/pygments-cl-repl
Project-URL: Bug Reports, https://todo.sr.ht/~rsl/sphinxcontrib-cldomain
Project-URL: Source, https://git.sr.ht/~rsl/pygments-cl-repl
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Framework :: Django
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
License-File: LICENSE

================
pygments-cl-repl
================

Syntax coloring for Common Lisp REPL sessions
---------------------------------------------

Overview
========

This package provides a Pygments_ lexer for `Common Lisp REPL`_
sessions.  The lexer is published as an entry point and, once
installed, Pygments will pick it up automatically.

You can then use this lexer with Pygments::

    $ pygmentize -l common-lisp-repl pygments_cl_repl/test.common-lisp-repl

In Sphinx_ documents the lexer is selected with the ``highlight``
directive::

    .. highlight:: common-lisp-repl

.. _Common Lisp REPL: http://www.cliki.net/REPL
.. _Pygments: http://pygments.org/
.. _Sphinx: http://sphinx-doc.org/

Installation
============

Use your favorite installer to install pygments-cl-repl into the same
Python you have installed Pygments. For example::

    $ pip install pygments-cl-repl

To verify the installation run::

    $ pygmentize -L lexer | grep -i common-lisp-repl
    * common-lisp-repl:
        Common Lisp REPL (filenames *.common-lisp-repl)
