for example if i write the following c++ code:
- Code: Select all
MyClass::~MyClass()
{<cursor>
and push enter, the cursor will move one line down and one tab right:
- Code: Select all
MyClass::~MyClass()
{
<cursor>
but, when i compose Erlang code, i don't get that behavior, for example:
- Code: Select all
my_func() -> <cursor>
and when i push enter:
- Code: Select all
my_func() ->
<cursor>
so...
how can i make it happen?