electric-align
electric-align copied to clipboard
better parens handling
Consider the following situation:
import { bar, baz } from foo;
import barbarbar from bar;
import foooooooooooo|
When I invoke electric-align here, then I get :
import { bar, baz } from foo;
import barbarbar from bar;
import foooooooooooo |
but what I want is :
import { bar, baz } from foo;
import barbarbar from bar;
import foooooooooooo |
Is is possible to add a feature to count words wrapped with parens as 1 column ?