aboutsummaryrefslogtreecommitdiff
path: root/src/highlights.rs
diff options
context:
space:
mode:
authordelta <darkussdelta@gmail.com>2025-08-26 00:57:02 +0200
committerdelta <darkussdelta@gmail.com>2025-08-26 00:58:09 +0200
commitcfd14e880023752bffe9a01d1781b54ceefa32ec (patch)
treecaf8bf8ef7cb966c9d06776bb75d02d11fe7eda7 /src/highlights.rs
initial commit
Diffstat (limited to 'src/highlights.rs')
-rw-r--r--src/highlights.rs80
1 files changed, 80 insertions, 0 deletions
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",
+];