From 4dbb6c4ce72f15db634e22836a23f05d45e24a48 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 31 Jul 2014 06:13:19 +0100 Subject: [PATCH] Eo: Add more keywords. --- syntax/eo.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syntax/eo.vim b/syntax/eo.vim index 8e346fe..dd3a28d 100644 --- a/syntax/eo.vim +++ b/syntax/eo.vim @@ -12,12 +12,12 @@ syn keyword eoType int uint bool char uchar byte ubyte double float syn keyword classKeywords class abstract 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 const contained return +syn keyword functionKeywords set get keys values params constructor destructor finalize virtual const contained return syn match classKeywordsMatch "\w\+" contains=classKeywords,functionKeywords syn match className "(\w\+\.)*\w\+" -syn match attributes "@\(inout\|out\|in\|class\|const\|extern\|protected\|constructor\|nonull\|warn_unused\)" +syn match attributes "@\(inout\|out\|in\|class\|const\|extern\|protected\|constructor\|nonull\|warn_unused\|private\)" syn keyword eoTodo contained TODO FIXME XXX syn cluster eoCommentGroup contains=eoTodo