[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

Pydev, Eclipse

Boris Ozegovic

2/22/2008 6:59:00 PM

Hi

Suppose I have three blocks:
if 1:
if 2:
if 3:
# here I want my cursor go back to second block (if 2:)

What is the standard shortcut for this? ctrl+arrow keys aren't, arrow keys
alone aren't either.

2 Answers

Preston Landers

2/22/2008 7:58:00 PM

0

Boris Ozegovic(ninja.krmenadl@fer.hr)@2008.02.22 19:59:28 +0100:
> Hi
>
> Suppose I have three blocks:
> if 1:
> if 2:
> if 3:
> # here I want my cursor go back to second block (if 2:)
>
> What is the standard shortcut for this? ctrl+arrow keys aren't, arrow keys
> alone aren't either.

Shift-Tab does it for me. It can also dedent whole blocks if you have
them selected.

cheers,
Preston

Boris Ozegovic

2/22/2008 9:13:00 PM

0

Preston Landers wrote:

> Shift-Tab does it for me. It can also dedent whole blocks if you have
> them selected.

Excellent. Thank you.