Last active
January 9, 2016 03:41
-
-
Save chanakasan/9632cdd3d6c9466067ef to your computer and use it in GitHub Desktop.
Favorite Vim Mappings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"=== NORMAL MODE === | |
" visual select inner word | |
nnoremap vv viw | |
" visual select to the end of line | |
nnoremap vV vg_ | |
" yank to the end of line | |
nnoremap Y y$ | |
" splits horizontal/vertical | |
nnoremap _ :sp<cr> | |
nnoremap <bar> :vsp<cr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment