Variable: dash-enable-fontlock
dash-enable-fontlock is a customizable variable defined in dash.el.
This variable is obsolete since 2.18.0; use global-dash-fontify-mode(var)/global-dash-fontify-mode(fun)
instead.
Value
nil
Documentation
If non-nil, fontify Dash macro calls and special variables.
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defcustom dash-enable-fontlock nil
"If non-nil, fontify Dash macro calls and special variables."
:set (lambda (sym val)
(set-default sym val)
(global-dash-fontify-mode (if val 1 0)))
:type 'boolean)