vote up 3 vote down star

I am somewhat clumsy in my vi knowledge. I know how to generally move around in command mode, specifically, jumping to lines, etc. But what is the command to jump to the end of the line that I am currently on?

flag

9 Answers

vote up 17 vote down check

Just the $ key. You can use 'A' to move to the end of the line and switch to editing mode.

link|flag
vote up 0 vote down

Possibly unrelated, but if you want to start a new line after the current line, you can use o anywhere in the line.

link|flag
vote up 4 vote down

If your current line wraps around the visible screen onto the next line, you can use g$ to get to the end of the screen line.

link|flag
vote up 6 vote down

As lots of people have said:

  • $ - gets you to the end of the line

but also:

  • ^ - gets you to the first non-whitespace character in the line, and
  • 0 (zero) - gets you to the beginning of the line incl. whitespace
link|flag
vote up 2 vote down

The advantage of the 'End' key is it works in both normal and insert modes.

'$' works in normal/command mode only but it also works in the classic vi editor (good to know when vim is not available).

link|flag
1  
What's you hanging around insert mode for ?! No ordinary decent citizen goes there after daylight. You know what happens in there, don't you ? Code disappears there, y'know ? It disappears, and is never heard from again. – ldigas May 20 at 22:59
vote up 2 vote down

Or there's the obvious answer: use the 'End' key to go to the end of the line.

link|flag
vote up 8 vote down
$

Checkout this VIM cheat sheet

link|flag
1  
Why use a cheat sheet? I know all commands by heart. AaBbCcDdEeFfGgHhIiJjKkLl... :-) – Ludvig A Norin Sep 19 '08 at 21:32
vote up 1 vote down

per this: Press A to enter edit mode starting at the end of the line.

link|flag
vote up 1 vote down

The dollar sign: $

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.