Is it possible to hook evil-insert-enter-state
and other states only within org-mode with the org-toggle-latex-fragment
?
p.s.
finally the suggestions work. I currently have the following pieces that make the org mode automatically render the content when you are in the normal mode, but expand the content when you are in other modes.
(defun org-preview-all-latex-fragments ()
"Toggle all the latex fragments."
(org-toggle-latex-fragment '(16)))
(add-hook 'org-mode-hook (lambda ()
(add-hook 'evil-normal-state-entry-hook 'org-preview-all-latex-fragments nil t)
(add-hook 'evil-normal-state-exit-hook 'org-remove-latex-fragment-image-overlays nil t)))