9 lines
281 B
Python
9 lines
281 B
Python
from pygments.lexer import inherit
|
|
from pygments.lexers.sql import MySqlLexer
|
|
from pygments.token import Keyword
|
|
|
|
|
|
class LiteCliLexer(MySqlLexer):
|
|
"""Extends SQLite lexer to add keywords."""
|
|
|
|
tokens = {"root": [(r"\brepair\b", Keyword), (r"\boffset\b", Keyword), inherit]}
|