commit fa5f6d7c5be47bd32dcc69ccf980fc585575cc38 (tree)
parent 51d45bfd9c39df2c4bb0cceb1b257e2a9f06ab4b
Author: Andrew Kelley <andrew@ziglang.org>
Date: Thu, 8 Oct 2020 22:44:13 -0700
add opaque syntax
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/syntax/zig.vim b/syntax/zig.vim
@@ -9,7 +9,7 @@ endif
let b:current_syntax = "zig"
syn keyword zigStorage const var extern packed export pub noalias inline noinline comptime callconv volatile allowzero align linksection threadlocal anytype
-syn keyword zigStructure struct enum union error
+syn keyword zigStructure struct enum union error opaque
syn keyword zigStatement break return continue asm defer errdefer unreachable try catch async nosuspend await suspend resume
syn keyword zigConditional if else switch and or orelse
syn keyword zigRepeat while for