Ask HN: Anything fancy in your .vimrc?
https://news.ycombinator.com/item?id=5202775Anything particularly esoteric in your vimrc?
Couple I find invaluable:-
" Yank block visual selection to space separated line
vnoremap <Leader>y "+y:let @+ = join(map(split(@+, '\n'), 'substitute(v:val, "^\\s\\+", "", "")'), " ")<CR>
" Yank block visual selection to comma separated line
vnoremap <Leader>Y "+y:let @+ = join(map(split(@+, '\n'), 'substitute(v:val, "^\\s\\+\\\|\\s\\+$", "", "g")'), ",")<CR>