summaryrefslogtreecommitdiff
path: root/src/Syntax
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2024-02-25 04:05:26 +0200
committerGravatar Uko Kokņevičs2024-02-25 04:05:26 +0200
commit29ba785c07169c54e33121d8fdd9d22fc18a20a3 (patch)
tree7354e3ca8cd431bf42e3df15e57d3027a22e55d4 /src/Syntax
parentAdd C-<home> and C-<end> (diff)
downloades-29ba785c07169c54e33121d8fdd9d22fc18a20a3.tar.gz
es-29ba785c07169c54e33121d8fdd9d22fc18a20a3.tar.xz
es-29ba785c07169c54e33121d8fdd9d22fc18a20a3.zip
Don't do italic, not supported everywhere
Diffstat (limited to 'src/Syntax')
-rw-r--r--src/Syntax/zig.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Syntax/zig.zig b/src/Syntax/zig.zig
index 4e82496..11e555d 100644
--- a/src/Syntax/zig.zig
+++ b/src/Syntax/zig.zig
@@ -40,7 +40,7 @@ const keywords1 = [_][]const u8 {
40 40
41const keywords2 = [_][]const u8 { 41const keywords2 = [_][]const u8 {
42 // primitive types 42 // primitive types
43 // TODO: generate all the integer types 43 // TODO: Add regex based matching and check all integers
44 "i8", "u8", "i16", "u16", "i32", "u32", "i64", "u64", "i128", "u128", "isize", "usize", "c_char", 44 "i8", "u8", "i16", "u16", "i32", "u32", "i64", "u64", "i128", "u128", "isize", "usize", "c_char",
45 "c_short", "c_ushort", "c_int", "c_uint", "c_long", "c_ulong", "c_longlong", "c_ulonglong", 45 "c_short", "c_ushort", "c_int", "c_uint", "c_long", "c_ulong", "c_longlong", "c_ulonglong",
46 "c_longdouble", "f16", "f32", "f64", "f80", "f128", "bool", "anyopaque", "void", "noreturn", 46 "c_longdouble", "f16", "f32", "f64", "f80", "f128", "bool", "anyopaque", "void", "noreturn",