diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2016-07-05 09:53:49 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2016-07-05 09:53:49 +0200 |
commit | bf188c4a51a6d151bb2694d73048727f4359c634 (patch) | |
tree | 3059e2f946ae6293e1809d67393fddced1197431 /syntax/kotlin.vim | |
parent | a5857b81c215139b3c0def78e5bd2f1da8a17af6 (diff) | |
download | vim-polyglot-bf188c4a51a6d151bb2694d73048727f4359c634.tar.gz vim-polyglot-bf188c4a51a6d151bb2694d73048727f4359c634.zip |
Updatev2.11.1
Diffstat (limited to 'syntax/kotlin.vim')
-rw-r--r-- | syntax/kotlin.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/syntax/kotlin.vim b/syntax/kotlin.vim index 9209255c..946a8f2c 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: 24 February 2016 +" Latest Revision: 4 July 2016 if exists("b:current_syntax") finish @@ -22,14 +22,14 @@ 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 ktStructure class object interface typealias fun val var constructor init -syn keyword ktReservedKeyword async typealias typeof yield +syn keyword ktReservedKeyword typeof syn keyword ktBoolean true false syn keyword ktConstant null -syn keyword ktModifier data tailrec lateinit reified external inline noinline crossinline const operator infix +syn keyword ktModifier data tailrec lateinit reified external inline noinline crossinline const operator infix coroutine suspend syn keyword ktTodo TODO FIXME XXX contained syn match ktShebang "\v^#!.*$" |