We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 46c04c4 + abe28c9 commit 4619c5eCopy full SHA for 4619c5e
haskell-font-lock.el
@@ -429,9 +429,12 @@ Returns keywords suitable for `font-lock-keywords'."
429
("(\\(,*\\|->\\))" 0 haskell-constructor-face)
430
("\\[\\]" 0 haskell-constructor-face)
431
;; 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)
436
(,qvarid 0 haskell-default-face)
437
(,qconid 0 haskell-constructor-face)
- (,(concat "\`" varid "\`") 0 haskell-operator-face)
438
439
(,conid 0 haskell-constructor-face)
440
0 commit comments