Hi, all!
I'm writing a mode for my toy template language.
In the language there is a construct to embed a newline:
foo{\n}bar
When a template is rendered, it will be replaced with a newline, as follows:
foobar
I would like to imitate this in the editor and force a soft wrap after {\n}:
1 | foo{\n}
| bar
Is there a way to do this without hacking too deep in the ACE source code?
Best,
Alexander.