Mean having a block with extra tab in each line how could I remove this tab using eclipse ?
For example –
while(1):
if(data == "ACK"):
break
convert to –
while(1):
if(data == "ACK"):
break
I use Eclipse Java EE IDE for Web Developers. with PyDev 2.7
Selecting all three lines and hitting Shift + Tab should un-indent the code block.