branch: elpa/kotlin-mode
commit 1624e7d795e49d439f52faa35425e908cdeff98e
Author: Dr. ERDI Gergo <[email protected]>
Commit: Dr. ERDI Gergo <[email protected]>
add 'nested' and 'inner' class modifiers
---
kotlin-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kotlin-mode.el b/kotlin-mode.el
index d4c4325c78..8fcff59046 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -59,7 +59,7 @@
'("package" "import"))
(defconst kotlin-mode--type-decl-keywords
- '("data" "class" "trait" "typealias" "enum"))
+ '("nested" "inner" "data" "class" "trait" "typealias" "enum"))
(defconst kotlin-mode--fun-decl-keywords
'("fun"))