Skip to content

Instantly share code, notes, and snippets.

@Raimondi
Created July 28, 2010 09:11
Show Gist options
  • Save Raimondi/493827 to your computer and use it in GitHub Desktop.
Save Raimondi/493827 to your computer and use it in GitHub Desktop.
Mappings to move on wrapped lines
nnoremap <Down> gj
nnoremap <Up> gk
vnoremap <Down> gj
vnoremap <Up> gk
inoremap <Down> <C-o>gj
inoremap <Up> <C-o>gk
nnoremap <Home> g<Home>
nnoremap <End> g<End>
vnoremap <Home> g<Home>
vnoremap <End> g<End>
inoremap <Home> <C-o>g<Home>
inoremap <End> <C-o>g<End>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment