How do I move to end of line in Vim?

VimEditorKeyboard ShortcutsVi

Vim Problem Overview


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?

Vim Solutions


Solution 1 - Vim

Just the $ (dollar sign) key. You can use A to move to the end of the line and switch to editing mode (Append). To jump the last non-blank character, you can press g then _ keys.

The opposite of A is I (Insert mode at beginning of line), as an aside. Pressing just the ^ will place your cursor at the first non-white-space character of the line.

Solution 2 - Vim

As lots of people have said:

  • $ gets you to the end of the line

but also:

  • ^ or _ gets you to the first non-whitespace character in the line, and
  • 0 (zero) gets you to the beginning of the line incl. whitespace

Solution 3 - Vim

  • $ moves to the last character on the line.

  • g _ goes to the last non-whitespace character.

  • g $ goes to the end of the screen line (when a buffer line is wrapped across multiple screen lines)

Solution 4 - Vim

The main question - end of line

$ goes to the end of line, remains in command mode

A goes to the end of line, switches to insert mode

Conversely - start of line (technically the first non-whitespace character)

^ goes to the start of line, remains in command mode

I (uppercase i) goes to the start of line, switches to insert mode

Further - start of line (technically the first column irrespective of whitespace)

0 (zero) goes to the start of line, remains in command mode

0i (zero followed by lowercase i) goes the start of line, switches to insert mode

For those starting to learn vi, here is a good introduction to vi by listing side by side vi commands to typical Windows GUI Editor cursor movement and shortcut keys.

vi editor for Windows users

Solution 5 - Vim

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.

Solution 6 - Vim

I can't see hotkey for macbook for use vim in standard terminal. Hope it will help someone. For macOS users (tested on macbook pro 2018):

> fn + - move to beginning line > > fn + - move to end line > > fn + - move page up > > fn + - move page down > > fn + g - move the cursor to the beginning of the document > > fn + shift + g - move the cursor to the end of the document >

For the last two commands sometime needs to tap twice.

Solution 7 - Vim

The dollar sign: $

Solution 8 - Vim

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

Solution 9 - Vim

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).

Solution 10 - Vim

In many cases, when we are inside a string we are enclosed by a double quote, or while writing a statement we don't want to press escape and go to end of that line with arrow key and press the semicolon(;) just to end the line. Write the following line inside your vimrc file:

imap <C-l> <Esc>$a

What does the line say? It maps Ctrl+l to a series of commands. It is equivalent to you pressing Esc (command mode), $ (end of line), a (append) at once.

Solution 11 - Vim

Also note the distinction between line (or perhaps physical line) and screen line. A line is terminated by the End Of Line character ("\n"). A screen line is whatever happens to be shown as one row of characters in your terminal or in your screen. The two come apart if you have physical lines longer than the screen width, which is very common when writing emails and such.

The distinction shows up in the end-of-line commands as well.

  • $ and 0 move to the end or beginning of the physical line or paragraph, respectively:
  • g$ and g0 move to the end or beginning of the screen line or paragraph, respectively.

If you always prefer the latter behavior, you can remap the keys like this:

:noremap 0 g0
:noremap $ g$

Solution 12 - Vim

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

Solution 13 - Vim

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

Solution 14 - Vim

The easiest option would be to key in $. If you are working with blocks of text, you might appreciate the command { and } in order to move a paragraph back and forward, respectively.

Solution 15 - Vim

I was used to Home/End getting me to the start and end of lines in Insert mode (from use in Windows and I think Linux), which Mac doesn't support. This is particularly annoying because when I'm using vim on a remote system, I also can't easily do it. After some painful trial and error, I came up with these .vimrc lines which do the same thing, but bound to Ctrl-A for the start of the line and Ctrl-D for the end of the line. (For some reason, Ctrl-E I guess is reserved or at least I couldn't figure a way to bind it.) Enjoy.

:imap <Char-1> <Char-15>:normal 0<Char-13>
:imap <Char-4> <Char-15>:normal $<Char-13>

There's a good chart here for the ASCII control character codes here for others as well:

http://www.physics.udel.edu/~watson/scen103/ascii.html

You can also do Ctrl-V + Ctrl- as well, but that doesn't paste as well to places like this.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionsalt.racerView Question on Stackoverflow
Solution 1 - VimdvorakView Answer on Stackoverflow
Solution 2 - VimRob WellsView Answer on Stackoverflow
Solution 3 - VimPaul RuaneView Answer on Stackoverflow
Solution 4 - Vimap-osdView Answer on Stackoverflow
Solution 5 - VimCommodore JaegerView Answer on Stackoverflow
Solution 6 - VimAlexander YushkoView Answer on Stackoverflow
Solution 7 - VimDavid SingerView Answer on Stackoverflow
Solution 8 - VimBrianView Answer on Stackoverflow
Solution 9 - VimDiastrophismView Answer on Stackoverflow
Solution 10 - VimPramodView Answer on Stackoverflow
Solution 11 - VimloevborgView Answer on Stackoverflow
Solution 12 - VimdavrView Answer on Stackoverflow
Solution 13 - VimgraywhView Answer on Stackoverflow
Solution 14 - VimparanzanaView Answer on Stackoverflow
Solution 15 - VimMarcusView Answer on Stackoverflow