Question

I'm using Ace Editor with emmet enabled. The following works fine, as expected:

var editor = ace.edit("editor");

editor.session.setMode("ace/mode/html");
editor.setOption("enableEmmet", true);

But if I change the mode to:

editor.session.setMode("ace/mode/twig");

It doesn't work anymore. Is there any way to make Emmet work in ace/mode/twig?

Was it helpful?
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top