Last active
August 13, 2018 08:54
-
-
Save sathishvj/8a79d05c3256066e532b7a63c4437ddc to your computer and use it in GitHub Desktop.
Vim: Surround selected text with parentheses, quotes, braces, brackets, single quotes
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
" surround selection with parentheses, quotes, braces, brackets | |
xnoremap <leader>( xi ()<Esc>P | |
xnoremap <leader>" xi ""<Esc>P | |
xnoremap <leader>{ xi {}<Esc>P | |
xnoremap <leader>' xi ''<Esc>P | |
xnoremap <leader>[ xi []<Esc>P |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment