branch: elpa/kotlin-mode
commit ffeb70e788d2f4cb9e5f7d6bdb84cb3380f52f98
Author: Remy Goldschmidt <[email protected]>
Commit: Remy Goldschmidt <[email protected]>

    Temporarily disable syntax highlighting for "by", "get", "set", "in", and 
"out"
---
 kotlin-mode.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kotlin-mode.el b/kotlin-mode.el
index 795bf7680f..37b040a9df 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -95,10 +95,10 @@
 (defconst kotlin-mode--modifier-keywords
   '("open" "private" "protected" "public"
     "override" "abstract" "final"
-    "annotation" "internal" "in" "out"))
+    "annotation" "internal")) ;; "in" "out"
 
 (defconst kotlin-mode--property-keywords
-  '("by" "get" "set"))
+  '()) ;; "by" "get" "set"
 
 (defconst kotlin-mode--initializer-keywords
   '("init" "constructor"))

Reply via email to