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