branch: elpa/kotlin-mode
commit 0c7ca08d99478fee735f4a11ddbda392c1ac9a82
Author: Shodai Yokoyama <[email protected]>
Commit: Shodai Yokoyama <[email protected]>

    kotlin-mode: Define statement keywords
---
 kotlin-mode.el | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/kotlin-mode.el b/kotlin-mode.el
index b1dd9feb7e..d1612e367d 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -66,6 +66,10 @@
 (defconst kotlin-mode--val-decl-keywords
   '("val" "var"))
 
+(defconst kotlin-mode--statement-keywords
+  '("if" "else" "try" "while" "do"
+    "throw" "return" "continue" "break" "when" "is" "in"))
+
 (defvar kotlin-mode-font-lock-keywords
   `(
     )

Reply via email to