diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-02 00:36:09 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-02 00:36:09 +0200 |
commit | 560024abe07ac73b31574167653a9b94821365fb (patch) | |
tree | 16d00f8cf054f3d77271bc03473ab0b6711956f4 /syntax | |
parent | 3ad297db5c1cf94660e4297ffa81b6281eab2884 (diff) | |
download | vim-polyglot-4.13.1.tar.gz vim-polyglot-4.13.1.zip |
Resolve issues with loading order, closes #571v4.13.1
Diffstat (limited to 'syntax')
-rw-r--r-- | syntax/odin.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/syntax/odin.vim b/syntax/odin.vim index 553f4612..393929e9 100644 --- a/syntax/odin.vim +++ b/syntax/odin.vim @@ -25,6 +25,7 @@ syntax keyword odinCase case syntax keyword odinContinue continue syntax keyword odinBreak break syntax keyword odinSizeOf size_of +syntax keyword odinOffsetOf offset_of syntax keyword odinTypeInfoOf type_info_of syntax keyword odinTypeIdOf typeid_of syntax keyword odinTypeOf type_of @@ -102,6 +103,7 @@ highlight link odinNotIn Keyword highlight link odinContinue Keyword highlight link odinBreak Keyword highlight link odinSizeOf Keyword +highlight link odinOffsetOf Keyword highlight link odinTypeOf Keyword highlight link odinTypeInfoOf Keyword highlight link odinTypeIdOf Keyword |