Python IDLE extension to align code by a regular expression
This IDLE extension allows you to align a block of code by a regular
expression selecting the text you would like to have aligned and then
running Format -> Align Selection or Alt+a
on default.
If space wrap
is enabled in the dialog that appears, regular expression
match in selected text will have a single space added on both sides. If
disabled, this will not happen. This is very helpful for making large
blocks of assignment statements pretty or for making comments for
your ruff rules in pyproject.toml all match up.
- Go to terminal and install with
pip install idlealign[user]
. - Run command
idleuserextend; idlealign
. You should see the following output:Config should be good! Config should be good!
. - Open IDLE, go to
Options
->Configure IDLE
->Extensions
. If everything went well, alongsideZzDummy
there should be and option calledidlealign
. This is where you can configure if idlealign is enabled or not.
- Go to terminal and install with
pip install idlealign
. - Run command
idlealign
. You will likely see a message sayingidlealign not in system registered extensions!
. Run the command given to add lintcheck to your system's IDLE extension config file. - Again run command
idlealign
. This time, you should see the following output:Config should be good!
. - Open IDLE, go to
Options
->Configure IDLE
->Extensions
. If everything went well, alongsideZzDummy
there should be and option calledidlealign
. This is where you can configure if idlealign is enabled or not.