Hi
I’m new to sublime - trying to get it configured so it indents as per my previous editor. The current issue I have is when I do a foreach loop, for example:
If I type the first line shorthand php and press enter, it’ll indent an extra level - I’d like it to stay on the same level.
<?php foreach( $users as $user ): ?>
<?php endforeach; ?>
Another example:
<?php foreach( $users as $user )
{
// Auto indents to this level
}
Essentially what I’m after is whenever enter is pressed - it’ll go to a new line at the same level as the previous line.
If someone can point out how I can turn off code completion too that would be useful.
Thanks
