Skip to content

Instantly share code, notes, and snippets.

@sathishvj
Last active August 13, 2018 08:54
Show Gist options
  • Save sathishvj/8a79d05c3256066e532b7a63c4437ddc to your computer and use it in GitHub Desktop.
Save sathishvj/8a79d05c3256066e532b7a63c4437ddc to your computer and use it in GitHub Desktop.
Vim: Surround selected text with parentheses, quotes, braces, brackets, single quotes
" 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