-3

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.

juvasquezg
  • 117
  • 2
  • 11

1 Answers1

1

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.

ChrisGPT was on strike
  • 127,765
  • 105
  • 273
  • 257