branch: elpa/kotlin-mode
commit cbeeef8986fa81c142f2436ca95dc952f146455e
Author: Shodai Yokoyama <[email protected]>
Commit: Shodai Yokoyama <[email protected]>
kotlin-mode: Define type declaration keywords
---
kotlin-mode.el | 3 +++
1 file changed, 3 insertions(+)
diff --git a/kotlin-mode.el b/kotlin-mode.el
index 036fbfaefd..565a1f5489 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -57,6 +57,9 @@
(defconst kotlin-mode--misc-keywords
'("package" "import"))
+(defconst kotlin-mode--type-decl-keywords
+ '("class" "trait" "typealias"))
+
(defvar kotlin-mode-font-lock-keywords
`(
)