Author Topic: placing cursor beyond end of line?  (Read 3330 times)

Offline teaburger

  • Single posting newcomer
  • *
  • Posts: 2
placing cursor beyond end of line?
« on: January 05, 2010, 07:52:12 am »
Is there a way to place the typing cursor after the end of line in my code?

This can be useful, for example:

if (...)
{
  x;

}

If my cursor is on the "x;" line and I want to add code on the next line, I have to hit "down", add spaces, and then start typing.  It would be nice to just hit "down" and start typing.  The C::B would enter the right number of tabs/spaces.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: placing cursor beyond end of line?
« Reply #1 on: January 05, 2010, 08:34:48 am »
Code
if (...)
{
  |x;
  |<---here
}
So you want to move the cursor from the first "|" to "| <---here" possition, using down key?
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline teaburger

  • Single posting newcomer
  • *
  • Posts: 2
Re: placing cursor beyond end of line?
« Reply #2 on: January 05, 2010, 04:18:14 pm »
Yes, that is what I'm trying to do.