FooSoft/vim-argwrap

Feature Request: support jsx props wrap

axlebedev opened this issue · 3 comments

Example:

<Component prop1="value1" prop2={3 + 7} prop3={someFunction(someVar)} />

wrap into

<Component 
    prop1="value1"
    prop2={3 + 7}
    prop3={someFunction(someVar)} 
/>

+1 ... really painful to do it manually every time

+1 any updates?

Would love to see something like this aswell! I know it's not the original purpose of the plugin, but this case fits so well!