Vim Tips Wiki
Register
m (Reverted edits by 194.247.234.2 (talk | block) to last version by JohnBot)
(This command only works upward or downward. See ":help gk" in vim.)
Tag: Visual edit
 
(14 intermediate revisions by 12 users not shown)
Line 20: Line 20:
   
 
; 3w : Move forward three words.
 
; 3w : Move forward three words.
  +
  +
; W : Move forward a WORD (any non-whitespace characters).
   
 
; b : Move backward to the beginning of a word.
 
; b : Move backward to the beginning of a word.
Line 38: Line 40:
   
 
; { : Jump backward one paragraph.
 
; { : Jump backward one paragraph.
  +
  +
; j : Jump forward one line.
  +
  +
; 10j : Jump forward 10 lines
  +
  +
; k : Jump backward one line.
  +
  +
; 10k : Jump backward 10 lines.
   
 
; H : Jump to the top of the screen.
 
; H : Jump to the top of the screen.
Line 50: Line 60:
   
 
; G : Jump to end of file.
 
; G : Jump to end of file.
  +
  +
; g
  +
: Jump x screen lines in direction (up,down) - useful for moving through a long, wrapped line of text.
   
 
; 1G : Jump to beginning of file (same as '''gg''').
 
; 1G : Jump to beginning of file (same as '''gg''').
Line 55: Line 68:
 
; 50G : Jump to line 50.
 
; 50G : Jump to line 50.
   
; 'm : Jump to the beginning of the line of mark m.
+
; mx : Set mark x at the current cursor position.
   
; `m : Jump to the cursor position of mark m.
+
; 'x : Jump to the beginning of the line of mark x.
  +
  +
; `x : Jump to the cursor position of mark x.
   
 
; <nowiki>''</nowiki>
 
; <nowiki>''</nowiki>
Line 67: Line 82:
 
: (Two back ticks. This is above the Tab key on some keyboards.)
 
: (Two back ticks. This is above the Tab key on some keyboards.)
   
  +
; '. : Jump to the last-changed line.
; % : Jump to corresponding item, e.g. from an open brace to its matching closing brace.
 
  +
 
; % : Jump to corresponding item, e.g. from an open brace to its matching closing brace. See [[Moving to matching braces]] for more.
  +
  +
; | : Jump to the 1st column of the current line.
  +
  +
; 42| : Jump to the 42nd column of the current line.
   
  +
=== '''g;''' ===
  +
Jump to the place of last edit. Can be quite helpful while debugging or editing files.
  +
:
 
==References==
 
==References==
 
*{{help|motion.txt}}
 
*{{help|motion.txt}}

Latest revision as of 16:34, 2 April 2022

Tip 48 Printable Monobook Previous Next

created 2001 · complexity basic · version 5.7


You can save a lot of time when navigating through text by using appropriate movement commands. In most cases the cursor keys are not the best choice.

Here are some basic movement commands that may help you acquire a taste for more:

e
Move to the end of a word.
w
Move forward to the beginning of a word.
3w
Move forward three words.
W
Move forward a WORD (any non-whitespace characters).
b
Move backward to the beginning of a word.
3b
Move backward three words.
$
Move to the end of the line.
0
Move to the beginning of the line.
^
Move to the first non-blank character of the line.
)
Jump forward one sentence.
(
Jump backward one sentence.
}
Jump forward one paragraph.
{
Jump backward one paragraph.
j
Jump forward one line.
10j
Jump forward 10 lines
k
Jump backward one line.
10k
Jump backward 10 lines.
H
Jump to the top of the screen.
M
Jump to the middle of the screen.
L
Jump to the bottom of the screen.
10<PageUp> or 10<CTRL-B>
Move 10 pages up.
5<PageDown> or 5<CTRL-F>
Move 5 pages down.
G
Jump to end of file.
g
Jump x screen lines in direction (up,down) - useful for moving through a long, wrapped line of text.
1G
Jump to beginning of file (same as gg).
50G
Jump to line 50.
mx
Set mark x at the current cursor position.
'x
Jump to the beginning of the line of mark x.
`x
Jump to the cursor position of mark x.
''
Return to the line where the cursor was before the latest jump.
(Two single quotes.)
``
Return to the cursor position before the latest jump (undo the jump).
(Two back ticks. This is above the Tab key on some keyboards.)
'.
Jump to the last-changed line.
%
Jump to corresponding item, e.g. from an open brace to its matching closing brace. See Moving to matching braces for more.
|
Jump to the 1st column of the current line.
42|
Jump to the 42nd column of the current line.

g;[]

Jump to the place of last edit. Can be quite helpful while debugging or editing files.

References[]

Comments[]