This repository has been archived on 2024-09-30. You can view files and clone it, but cannot push or open issues/pull-requests.
hook-frida/venv/Lib/site-packages/prompt_toolkit/lexers/__init__.py

21 lines
408 B
Python

"""
Lexer interface and implementations.
Used for syntax highlighting.
"""
from __future__ import annotations
from .base import DynamicLexer, Lexer, SimpleLexer
from .pygments import PygmentsLexer, RegexSync, SyncFromStart, SyntaxSync
__all__ = [
# Base.
"Lexer",
"SimpleLexer",
"DynamicLexer",
# Pygments.
"PygmentsLexer",
"RegexSync",
"SyncFromStart",
"SyntaxSync",
]