From cfd14e880023752bffe9a01d1781b54ceefa32ec Mon Sep 17 00:00:00 2001 From: delta Date: Tue, 26 Aug 2025 00:57:02 +0200 Subject: initial commit --- src/highlights.rs | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/highlights.rs (limited to 'src/highlights.rs') diff --git a/src/highlights.rs b/src/highlights.rs new file mode 100644 index 0000000..62f6e3d --- /dev/null +++ b/src/highlights.rs @@ -0,0 +1,80 @@ +pub static HIGHLIGHTS: &'static [&'static str] = &[ + "variable", + "variable.builtin", + "variable.parameter", + "variable.parameter.builtin", + "variable.member", + "constant", + "constant.builtin", + "constant.macro", + "module", + "module.builtin", + "label", + "string", + "string.documentation", + "string.regexp", + "string.escape", + "string.special", + "string.special.symbol", + "string.special.url", + "string.special.path", + "character", + "character.special", + "boolean", + "number", + "number.float", + "type", + "type.builtin", + "type.definition", + "attribute", + "attribute.builtin", + "property", + "function", + "function.builtin", + "function.call", + "function.macro", + "function.method", + "function.method.call", + "constructor", + "constructor.lua", + "operator", + "keyword", + "keyword.coroutine", + "keyword.function", + "keyword.operator", + "keyword.import", + "keyword.type", + "keyword.modifier", + "keyword.repeat", + "keyword.return", + "keyword.debug", + "keyword.exception", + "keyword.conditional", + "keyword.conditional.ternary", + "keyword.directive", + "keyword.directive.define", + "punctuation", + "punctuation.special", + "comment", + "comment.documentation", + "comment.error", + "comment.warning", + "comment.todo", + "comment.note", + "markup.strong", + "markup.italic", + "markup.strikethrough", + "markup.underline", + "markup.heading", + "markup.link", + "markup.link.label", + "markup.link.url", + "diff.plus", + "diff.delta", + "diff.minus", + "tag", + "tag.builtin", + "tag.attribute", + "tag.delimeter", + "none", +]; -- cgit v1.2.3