3

I am a noob to Komodo and I'm trying to figure out how to use it to my best advantage. One thing keeps bugging me & there's probably a very simple answer.

As an example, when I type

if(isset($_GET['

Komodo will automatically fill in the rest of that line: '])) which is great. Except that my cursor remains before that autocompleted part, so I have to move my hand to the arrows and manually navigate to the next line or the end of that line or whatever.

It seems like there should be a key combination to jump past the autocompleted brackets/parentheses/quotes so I can just continue on typing without moving over to the arrow keys.

But I don't know what that is! Do you?

Paul Sweatte
  • 24,148
  • 7
  • 127
  • 265
JakeParis
  • 11,056
  • 3
  • 42
  • 65

2 Answers2

4

Use the combination of holding down the Ctrl key (Alt on OSX) while pressing the right arrow to jump to the end of the current statement.

Álvaro González
  • 142,137
  • 41
  • 261
  • 360
Paul Sweatte
  • 24,148
  • 7
  • 127
  • 265
1

Caret stays there because Komodo understands you need to populate the string. Just hit End when done.

Álvaro González
  • 142,137
  • 41
  • 261
  • 360