Rebrand the Rust client crate (coven/ → hh/, package+binary "hack-house"), README, CLI strings, and branch (coven → hack-house). Gitea repo renamed cmd-chat → hack-house to match. Crypto/server logic unchanged; selftest + golden-vector test still green, binary is now `hack-house`. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
26 lines
899 B
Python
26 lines
899 B
Python
"""
|
|
pygments.lexers.agile
|
|
~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Just export lexer classes previously contained in this module.
|
|
|
|
:copyright: Copyright 2006-present by the Pygments team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
# ruff: noqa: F401
|
|
|
|
from pygments.lexers.lisp import SchemeLexer
|
|
from pygments.lexers.jvm import IokeLexer, ClojureLexer
|
|
from pygments.lexers.python import PythonLexer, PythonConsoleLexer, \
|
|
PythonTracebackLexer, Python3Lexer, Python3TracebackLexer, DgLexer
|
|
from pygments.lexers.ruby import RubyLexer, RubyConsoleLexer, FancyLexer
|
|
from pygments.lexers.perl import PerlLexer, Perl6Lexer
|
|
from pygments.lexers.d import CrocLexer, MiniDLexer
|
|
from pygments.lexers.iolang import IoLexer
|
|
from pygments.lexers.tcl import TclLexer
|
|
from pygments.lexers.factor import FactorLexer
|
|
from pygments.lexers.scripting import LuaLexer, MoonScriptLexer
|
|
|
|
__all__ = []
|