branch: elpa/kotlin-mode
commit 4f1d0a3919ef1d366a5491ed74e1d2c28b8c181f
Author: Dr. ERDI Gergo <[email protected]>
Commit: Dr. ERDI Gergo <[email protected]>
Add 'interface' as a type decl keyword
---
kotlin-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kotlin-mode.el b/kotlin-mode.el
index 423730af79..7aede909cc 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -59,7 +59,7 @@
'("package" "import"))
(defconst kotlin-mode--type-decl-keywords
- '("nested" "inner" "data" "class" "trait" "typealias" "enum"))
+ '("nested" "inner" "data" "class" "interface" "trait" "typealias" "enum"))
(defconst kotlin-mode--fun-decl-keywords
'("fun"))