User Tools

Site Tools


vim:cheatsheet:cursor_movement

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
vim:cheatsheet:cursor_movement [2021/02/16 09:21] petervim:cheatsheet:cursor_movement [2021/02/16 09:23] (current) peter
Line 6: Line 6:
     k - move cursor up     k - move cursor up
     l - move cursor right     l - move cursor right
 +    
     H - move to top of screen     H - move to top of screen
     M - move to middle of screen     M - move to middle of screen
     L - move to bottom of screen     L - move to bottom of screen
 +    
     w - jump forwards to the start of a word     w - jump forwards to the start of a word
     W - jump forwards to the start of a word (words can contain punctuation)     W - jump forwards to the start of a word (words can contain punctuation)
     e - jump forwards to the end of a word     e - jump forwards to the end of a word
     E - jump forwards to the end of a word (words can contain punctuation)     E - jump forwards to the end of a word (words can contain punctuation)
 +    
     b - jump backwards to the start of a word     b - jump backwards to the start of a word
     B - jump backwards to the start of a word (words can contain punctuation)     B - jump backwards to the start of a word (words can contain punctuation)
-    % - move to matching character (default supported pairs: '()', '{}', '[]' - use :h matchpairs in vim for more info)+
     0 - jump to the start of the line     0 - jump to the start of the line
-    ^ - jump to the first non-blank character of the line 
     $ - jump to the end of the line     $ - jump to the end of the line
 +    
 +    % - move to matching character (default supported pairs: '()', '{}', '[]' - use :h matchpairs in vim for more info)
 +    
 +    ^ - jump to the first non-blank character of the line
     g_ - jump to the last non-blank character of the line     g_ - jump to the last non-blank character of the line
 +
     gg - go to the first line of the document     gg - go to the first line of the document
-    G - go to the last line of the document 
     5gg or 5G - go to line 5     5gg or 5G - go to line 5
 +    G - go to the last line of the document
 +
     gd - move to local declaration     gd - move to local declaration
     gD - move to global declaration     gD - move to global declaration
 +
     fx - jump to next occurrence of character x     fx - jump to next occurrence of character x
     tx - jump to before next occurrence of character x     tx - jump to before next occurrence of character x
     Fx - jump to previous occurence of character x     Fx - jump to previous occurence of character x
     Tx - jump to after previous occurence of character x     Tx - jump to after previous occurence of character x
 +
     ; - repeat previous f, t, F or T movement     ; - repeat previous f, t, F or T movement
     , - repeat previous f, t, F or T movement, backwards     , - repeat previous f, t, F or T movement, backwards
 +
     } - jump to next paragraph (or function/block, when editing code)     } - jump to next paragraph (or function/block, when editing code)
     { - jump to previous paragraph (or function/block, when editing code)     { - jump to previous paragraph (or function/block, when editing code)
 +
     zz - center cursor on screen     zz - center cursor on screen
 +
     Ctrl + e - move screen down one line (without moving cursor)     Ctrl + e - move screen down one line (without moving cursor)
     Ctrl + y - move screen up one line (without moving cursor)     Ctrl + y - move screen up one line (without moving cursor)
 +
     Ctrl + b - move back one full screen     Ctrl + b - move back one full screen
     Ctrl + f - move forward one full screen     Ctrl + f - move forward one full screen
Line 42: Line 56:
 </code> </code>
  
-<WRAP center round info 60%>+<WRAP info>
 **NOTE:**  Prefix a cursor movement command with a number to repeat it. **NOTE:**  Prefix a cursor movement command with a number to repeat it.
  
vim/cheatsheet/cursor_movement.1613467283.txt.gz · Last modified: 2021/02/16 09:21 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki