summaryrefslogtreecommitdiffstats
path: root/syntax
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2020-10-09 22:57:13 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2020-10-09 22:57:13 +0200
commit0d48ba92455548018105670980552e54930f60eb (patch)
treece1b41ae7a984eff3709073ae97809bce876f147 /syntax
parent1993b9f68fff3cb87413fdc2e328763c291578c4 (diff)
downloadvim-polyglot-0d48ba92455548018105670980552e54930f60eb.tar.gz
vim-polyglot-0d48ba92455548018105670980552e54930f60eb.zip
Fix detecting of some filetypes, closes #579
Diffstat (limited to 'syntax')
-rw-r--r--syntax/zig.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax/zig.vim b/syntax/zig.vim
index f6819ef5..95d52381 100644
--- a/syntax/zig.vim
+++ b/syntax/zig.vim
@@ -11,7 +11,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