function! text#ConflictMarkersSearch() normal /<<<<<<<\|=======\||||||||\|>>>>>>> endfunction function! text#RemoveTrailingSpaces() %s/ \+$// endfunction function! text#SqueezeEmptyLines() " Replace multiple consecutive empty lines with just one %s/\n\{3,\}/\r\r/ endfunction