branch: elpa/kotlin-mode
commit 1795847372302343c17022c8c15a74459094cc5d
Author: Shodai Yokoyama <[email protected]>
Commit: Shodai Yokoyama <[email protected]>
kotlin-mode: syntax-table - Define b-style comment
---
kotlin-mode.el | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/kotlin-mode.el b/kotlin-mode.el
index 9996e84fe2..35c276b956 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -40,6 +40,10 @@
(defvar kotlin-mode-syntax-table
(let ((st (make-syntax-table)))
+ ;; b-style comment
+ (modify-syntax-entry ?/ ". 124b" st)
+ (modify-syntax-entry ?* ". 23" st)
+ (modify-syntax-entry ?\n "> b" st)
st))