branch: elpa/kotlin-mode
commit b2d5ff65fc2dbec2956353712f9c27db893e32ff
Author: taku0 <[email protected]>
Commit: taku0 <[email protected]>
Highlight single quotes and back quotes
---
kotlin-mode.el | 2 ++
1 file changed, 2 insertions(+)
diff --git a/kotlin-mode.el b/kotlin-mode.el
index e5c7b92373..cbf08493f7 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -138,6 +138,8 @@
;; Strings
(modify-syntax-entry ?\" "\"" st)
+ (modify-syntax-entry ?\' "\"" st)
+ (modify-syntax-entry ?` "\"" st)
;; `_' as being a valid part of a word
(modify-syntax-entry ?_ "w" st)