branch: elpa/kotlin-mode
commit 34947b6b3574b50fbeda2f0a2f9a47472bccaee2
Author: Remy Goldschmidt <[email protected]>
Commit: Remy Goldschmidt <[email protected]>

    Added 'data class' as a keyword
---
 kotlin-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kotlin-mode.el b/kotlin-mode.el
index 594b601761..710ea52d4f 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -59,7 +59,7 @@
   '("package" "import"))
 
 (defconst kotlin-mode--type-decl-keywords
-  '("class" "trait" "typealias" "enum"))
+  '("data class" "class" "trait" "typealias" "enum"))
 
 (defconst kotlin-mode--fun-decl-keywords
   '("fun"))

Reply via email to