In Jetbrains Pycharm (Professional, 2016.1), is there a way (built in or third-party) to modify the code style in python to align consecutive lines by an operator, particularly an assignment one? For example, I would like
var1 = 5
variable2 = 10
varbl3 = 15
to be reformatted to
var1 = 5
variable2 = 10
varbl3 = 15
I am aware of several packages that let me do this manually with an external command (I am currently using Front-End Alignment, but String Manupulation also works decently), but it precludes me from also using code reformatting (which I otherwise find very useful) on the same piece of code.
I am aware this does not follow PEP-8 standards, and I don't wish to have a debate about the merits/demerits of aligning code. Is there a way to allow the reformat code option to automatically take care of this for me?