Pydev, Eclipse

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Boris Ozegovic

    Pydev, Eclipse

    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.

  • Preston Landers

    #2
    Re: Pydev, Eclipse

    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

    Comment

    • Boris Ozegovic

      #3
      Re: Pydev, Eclipse

      Preston Landers wrote:
      Shift-Tab does it for me. It can also dedent whole blocks if you have
      them selected.
      Excellent. Thank you.

      Comment

      Working...