From 6b815beb4affca593b5849714af55726178055e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Touzy?= Date: Mon, 11 May 2020 14:53:17 +0200 Subject: [PATCH] feat: additional kotlin keywords Add missing Kotlin keywords : - data (for data class) - object - override - sealed (for sealed class) - when --- Kotlin.xclangspec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Kotlin.xclangspec b/Kotlin.xclangspec index 646495d..46c0cf4 100644 --- a/Kotlin.xclangspec +++ b/Kotlin.xclangspec @@ -78,6 +78,7 @@ "class", "const", "continue", + "data", "default", "do", "double", @@ -104,11 +105,14 @@ "native", "new", "null", + "object", + "override", "package", "private", "protected", "public", "return", + "sealed", "short", "static", "strictfp", @@ -126,6 +130,7 @@ "var", "void", "volatile", + "when", "while" ); Type = "xcode.syntax.keyword";