branch: elpa/kotlin-mode
commit b6bb8de0cfa6f0e7708ad0a33b70c9d705183c48
Author: Shodai Yokoyama <[email protected]>
Commit: Shodai Yokoyama <[email protected]>
kotlin-mode: Define context variables keywords
---
kotlin-mode.el | 3 +++
1 file changed, 3 insertions(+)
diff --git a/kotlin-mode.el b/kotlin-mode.el
index d1612e367d..74f99f5003 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -70,6 +70,9 @@
'("if" "else" "try" "while" "do"
"throw" "return" "continue" "break" "when" "is" "in"))
+(defconst kotlin-mode--context-variables-keywords
+ '("this" "super"))
+
(defvar kotlin-mode-font-lock-keywords
`(
)