Uwe Brauer
2018-05-07 08:34:32 UTC
Hi
Maybe I am old fashioned but is the only way of turning orgalist on in a
message buffer.
(defun turn-on-orgalist ()
(interactive)
(orgalist-mode 'toggle))
(add-hook 'mail-mode-hook 'turn-on-orgalist)
(add-hook 'message-mode-hook 'turn-on-orgalist)
I could use a anonymous lambda function, but I try to avoid that in a
hook.
Uwe Brauer
Maybe I am old fashioned but is the only way of turning orgalist on in a
message buffer.
(defun turn-on-orgalist ()
(interactive)
(orgalist-mode 'toggle))
(add-hook 'mail-mode-hook 'turn-on-orgalist)
(add-hook 'message-mode-hook 'turn-on-orgalist)
I could use a anonymous lambda function, but I try to avoid that in a
hook.
Uwe Brauer