electric-align icon indicating copy to clipboard operation
electric-align copied to clipboard

better parens handling

Open k-nara opened this issue 7 years ago • 0 comments

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 ?

k-nara avatar Apr 13 '18 02:04 k-nara