We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5bef49 commit 31bb3b8Copy full SHA for 31bb3b8
haskell-font-lock.el
@@ -38,7 +38,7 @@ alignment and can thus lead to nasty surprises w.r.t layout."
38
:group 'haskell
39
:type 'boolean)
40
41
-(defconst haskell-font-lock-symbols-alist
+(defcustom haskell-font-lock-symbols-alist
42
'(("\\" . "λ")
43
("not" . "¬")
44
("->" . "→")
@@ -75,7 +75,9 @@ COMPONENTS is a representation specification suitable as an argument to
75
`compose-region'.
76
PREDICATE if present is a function of one argument (the start position
77
of the symbol) which should return non-nil if this mapping should
78
-be disabled at that position.")
+be disabled at that position."
79
+ :type '(alist string string)
80
+ :group 'haskell)
81
82
(defun haskell-font-lock-dot-is-not-composition (start)
83
"Return non-nil if the \".\" at START is not a composition operator.
0 commit comments