There's a reformatter bundled in pydev, but it's very simple (only works for spaces after commas and handles spaces after parenthesis -- configure at window > preferences > pydev > code style > code formatter).
You can activate it through Ctrl+Shift+F
Cheers,
Fabio
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
All,
Is there something akin to TIDY for the PyDev plugin? Something that will reformat all the code? For example, cleaning
x=12.3
to
x = 12.3
D
There's a reformatter bundled in pydev, but it's very simple (only works for spaces after commas and handles spaces after parenthesis -- configure at window > preferences > pydev > code style > code formatter).
You can activate it through Ctrl+Shift+F
Cheers,
Fabio
So, it could be a feature to ask for a space before and after =, !=, <, and friends?
D.
Surely