branch: elpa/kotlin-mode
commit 019b2aea770e46c4a40855a3d1935b2e527b3a0f
Author: Shodai Yokoyama <[email protected]>
Commit: Shodai Yokoyama <[email protected]>
kotlin-mode: Define misc keywords
---
kotlin-mode.el | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/kotlin-mode.el b/kotlin-mode.el
index cf9c500369..036fbfaefd 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -25,6 +25,8 @@
;;; Code:
+(require 'rx)
+
(defcustom kotlin-mode-hook nil
"Hook run after entering `kotlin-mode'."
:type 'hook
@@ -52,6 +54,9 @@
;;; Font Lock
+(defconst kotlin-mode--misc-keywords
+ '("package" "import"))
+
(defvar kotlin-mode-font-lock-keywords
`(
)