Aquamacs has a default html-helper-mode
to edit .html
files that has weird behaviors. I would like to switch back to regular html-mode
by default.
I read that I needed to change the magic-mode-alist
to do so.
From what I understand from the documentation, adding this to my .emacs
should do the deal:
(setq magic-mode-alist '(("\\.html" . html-mode)))
Unfortunately it does not change anything.
I read elsewhere that setting it to nil
should work but it did not either.
Any idea what I am missing?
Thanks in advance.