Hi There,
Very new to Atom so sorry if this is easy - how do you get auto-indent working with the Liquid syntax?
I get this…
{%- if settings.favicon != blank -%}
<link rel="shortcut icon" href="{{ settings.favicon | img_url: '32x32' }}" type="image/png">
{%- endif -%}
Instead of this…
{%- if settings.favicon != blank -%}
<link rel="shortcut icon" href="{{ settings.favicon | img_url: '32x32' }}" type="image/png">
{%- endif -%}
What I’m after is 4 spaces for tabs instead of 2. I have that set in config.cson but when I open files they’re still 2 spaces - is there another way to force 4 spaces for any file in Atom?
Any help would be much appreciated.