Skip to content

Commit 4619c5e

Browse files
committed
Merge pull request #442 from gracjan/pr-operator-font-lock
Operator `M.v` font lock.
2 parents 46c04c4 + abe28c9 commit 4619c5e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

haskell-font-lock.el

+4-1
Original file line numberDiff line numberDiff line change
@@ -429,9 +429,12 @@ Returns keywords suitable for `font-lock-keywords'."
429429
("(\\(,*\\|->\\))" 0 haskell-constructor-face)
430430
("\\[\\]" 0 haskell-constructor-face)
431431
;; Expensive.
432+
(,(concat "`" varid "`") 0 haskell-operator-face)
433+
(,(concat "`" conid "`") 0 haskell-operator-face)
434+
(,(concat "`" qvarid "`") 0 haskell-operator-face)
435+
(,(concat "`" qconid "`") 0 haskell-operator-face)
432436
(,qvarid 0 haskell-default-face)
433437
(,qconid 0 haskell-constructor-face)
434-
(,(concat "\`" varid "\`") 0 haskell-operator-face)
435438
;; Expensive.
436439
(,conid 0 haskell-constructor-face)
437440

0 commit comments

Comments
 (0)