diff --git a/doc_src/fish_indent_lexer.py b/doc_src/fish_indent_lexer.py index c3d5750d5..f4b154e8c 100644 --- a/doc_src/fish_indent_lexer.py +++ b/doc_src/fish_indent_lexer.py @@ -5,7 +5,6 @@ from pygments.lexer import Lexer from pygments.token import ( - Keyword, Name, Comment, String, @@ -30,10 +29,10 @@ ROLE_TO_TOKEN = { "normal": Name.Variable, "error": Generic.Error, "command": Name.Function, - "keyword": Keyword, + "keyword": Name.Function, "statement_terminator": Punctuation, "param": Name.Constant, - "option": Name.Literal, + "option": Name.Constant, "comment": Comment, "match": DEFAULT, "search_match": DEFAULT,