Skip to content

Instantly share code, notes, and snippets.

View alols's full-sized avatar

Albin alols

  • Gothenburg, Sweden
View GitHub Profile
@alols
alols / softwrapcmd.vim
Created December 1, 2011 21:38
SoftWrap vim command
" Turn hard wrapped text into soft wrapped.
" This command will join all lines within a range that are not separated
" by empty lines. Automatic word wrap must be off (set fo-=a).
" Useful if you need to copy and paste into a word processor.
command! -range=% SoftWrap
\ <line2>put _ |
\ <line1>,<line2>g/.\+/ .;-/^$/ join |normal $x