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

    Fixed font lock for types
---
 kotlin-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kotlin-mode.el b/kotlin-mode.el
index 09240a75ca..795bf7680f 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -112,7 +112,7 @@
 
     ;; Types
     (,(rx-to-string
-      `(and (* space) ":" (* space) (group (+ word)))
+      `(and (* space) ":" (* space) (group (+ (or word "<" ">" "."))))
       t)
      0 font-lock-type-face)
 

Reply via email to