tasn pushed a commit to branch master. http://git.enlightenment.org/editors/vim-configs.git/commit/?id=1ecf2db13a217bd2e712f7396b02c6e67360e915
commit 1ecf2db13a217bd2e712f7396b02c6e67360e915 Author: Tom Hacohen <t...@stosb.com> Date: Thu Jul 31 06:52:13 2014 +0100 Eo: Add void type. --- syntax/eo.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax/eo.vim b/syntax/eo.vim index 9a30cc5..e9d33d7 100644 --- a/syntax/eo.vim +++ b/syntax/eo.vim @@ -7,7 +7,7 @@ syn keyword eoBoolean false true syn keyword eoConstants null -syn keyword eoType bool byte ubyte char uchar short ushort int uint long ulong float double +syn keyword eoType bool byte ubyte char uchar short ushort int uint long ulong float double void syn keyword eoStructure class abstract interface mixin type struct enum var --