Vim Tips Wiki
(Remove html character entities)
(restore deleted part of tip template)
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{review}}
 
 
{{TipImported
 
{{TipImported
 
|id=336
 
|id=336

Revision as of 17:39, 11 December 2013

Tip 336 Printable Monobook Previous Next

created October 3, 2002 · complexity basic · author Odyss · version 5.7


An easy way to to get to a line (whose number we know) faster is to combine some existing methods:

:123<CR>
or
123G
or
123gg

The solution is to map in normal mode the enter to G.

:nmap <CR> G

We can type the line number and then press Enter to get there.

Comments

Though

:123[Enter]

takes you to line 123 in the file,

123[Enter]

takes you 123 lines down from your present position.