branch: elpa/kotlin-mode
commit 7acab12dc548277c2206926e6ee76b52b186e833
Author: Shodai Yokoyama <[email protected]>
Commit: Shodai Yokoyama <[email protected]>
kotlin-mode: Define val declaration keywords
---
kotlin-mode.el | 3 +++
1 file changed, 3 insertions(+)
diff --git a/kotlin-mode.el b/kotlin-mode.el
index 159ad2bc97..b1dd9feb7e 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -63,6 +63,9 @@
(defconst kotlin-mode--fun-decl-keywords
'("fun"))
+(defconst kotlin-mode--val-decl-keywords
+ '("val" "var"))
+
(defvar kotlin-mode-font-lock-keywords
`(
)