motiejus/dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone https://git.jakstys.lt/motiejus/dotfiles.git
Log | Tree | Refs | README | LICENSE

commit d44cdc1e850ca7fe95c10d335190ced190e8b581 (tree)
parent d99d328a9592313179ab40e52c90b90c7f15fd0d
Author: Andrew Kelley <superjoe30@gmail.com>
Date:   Sun,  7 Jan 2018 16:56:34 -0500

add try and catch keywords

Diffstat:
Msyntax/zig.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/syntax/zig.vim b/syntax/zig.vim @@ -10,7 +10,7 @@ let b:current_syntax = "zig" syn keyword zigStorage const var extern packed export pub noalias inline comptime nakedcc coldcc stdcallcc volatile align section syn keyword zigStructure struct enum union -syn keyword zigStatement break return continue asm defer unreachable +syn keyword zigStatement break return continue asm defer unreachable try catch syn keyword zigConditional if else switch and or syn keyword zigRepeat while for