I want to use emmet-mode in emacs with .jade files but emmet-mode don't work. It expand html but not jade sintaxis.
Thank you.
I want to use emmet-mode in emacs with .jade files but emmet-mode don't work. It expand html but not jade sintaxis.
Thank you.
As mentioned in the Optional Settings section of the README.md
, you can enable emmet-mode
based on major mode like so:
(add-hook 'jade-mode-hook #'emmet-mode)
emmet-mode
should now be enabled with jade-mode
, and C-j
should be bound to emmet-expand-line
.