tasn pushed a commit to branch master. http://git.enlightenment.org/editors/vim-configs.git/commit/?id=583b3a8d395392402c37da345bbb32684d390a9b
commit 583b3a8d395392402c37da345bbb32684d390a9b Author: Tom Hacohen <t...@stosb.com> Date: Thu Jul 31 06:27:47 2014 +0100 Eo: Fix class types. --- syntax/eo.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syntax/eo.vim b/syntax/eo.vim index 31e5031..230cccc 100644 --- a/syntax/eo.vim +++ b/syntax/eo.vim @@ -9,9 +9,9 @@ syn keyword eoConstants null syn keyword eoType bool byte ubyte char uchar short ushort int uint long ulong float double -syn keyword eoStructure class type struct enum var +syn keyword eoStructure class abstract interface mixin type struct enum var -syn keyword classKeywords abstract legacy_prefix eo_prefix data contained +syn keyword classKeywords legacy_prefix eo_prefix data contained syn keyword classKeywords constructors properties methods implements events contained syn keyword functionKeywords set get keys values params constructor destructor finalize virtual const contained return --