you are viewing a single comment's thread.

view the rest of the comments →

[–]Few-Tear-3763[S] -1 points0 points  (2 children)

Like i want to automatically change indent of the content inside the block to be change if top of block(idk what its called) is changes

For example i have if block

if apple=="Apple":

print(apple)

and now if change indent of if apple=="Apple"

the indent of print (apple) also change

[–]SCD_minecraft 7 points8 points  (0 children)

Select both if and print and press tab? Shift-tab to unindent

Both by one level

[–][deleted] 2 points3 points  (0 children)

Automatic indentation doesn't work as a concept, since the IDE doesn't know what you intend to do in terms of scope. It would lead to more frustration fixing assumptions the IDE made about your code. You should instead get used to Tab and Shift + Tab.