summaryrefslogtreecommitdiffstats
path: root/litecli/lexer.py
diff options
context:
space:
mode:
Diffstat (limited to 'litecli/lexer.py')
-rw-r--r--litecli/lexer.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/litecli/lexer.py b/litecli/lexer.py
new file mode 100644
index 0000000..678eb3f
--- /dev/null
+++ b/litecli/lexer.py
@@ -0,0 +1,9 @@
+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]}