diff options
| author | Adam Stankiewicz <sheerun@sher.pl> | 2015-12-28 14:48:04 +0100 | 
|---|---|---|
| committer | Adam Stankiewicz <sheerun@sher.pl> | 2015-12-28 14:48:04 +0100 | 
| commit | a8d08c8a49a5757fa479e5b51ee774d1b991f56b (patch) | |
| tree | 983d72c7ef1e8d20fd3f179c826dbb2b35889a2a /syntax/kotlin.vim | |
| parent | 7679a92627661ef2d6878079a5c53bf3669aabf7 (diff) | |
| download | vim-polyglot-a8d08c8a49a5757fa479e5b51ee774d1b991f56b.tar.gz vim-polyglot-a8d08c8a49a5757fa479e5b51ee774d1b991f56b.zip  | |
Update
Diffstat (limited to '')
| -rw-r--r-- | syntax/kotlin.vim | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/syntax/kotlin.vim b/syntax/kotlin.vim index e8828417..6797d4cf 100644 --- a/syntax/kotlin.vim +++ b/syntax/kotlin.vim @@ -3,7 +3,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'kotlin') == -1  " Vim syntax file  " Language: Kotlin  " Maintainer: Alexander Udalov -" Latest Revision: 7 December 2015 +" Latest Revision: 23 December 2015  if exists("b:current_syntax")      finish @@ -23,7 +23,8 @@ syn keyword ktInclude import package  syn keyword ktType Any Boolean Byte Char Double Float Int Long Nothing Short Unit  syn keyword ktModifier annotation companion enum inner internal private protected public abstract final open override sealed vararg dynamic  syn keyword ktStructure class object interface fun val var constructor init -syn keyword ktTypedef typealias + +syn keyword ktReservedKeyword async typealias typeof yield  syn keyword ktBoolean true false  syn keyword ktConstant null @@ -67,6 +68,7 @@ hi link ktRepeat Repeat  hi link ktOperator Operator  hi link ktKeyword Keyword  hi link ktException Exception +hi link ktReservedKeyword Error  hi link ktInclude Include  | 
