]> git.phdru.name Git - dotfiles.git/blob - .vim/plugin/text.vim
Feat(recode-filenames-recursive): Allow to omit parameters
[dotfiles.git] / .vim / plugin / text.vim
1 function! SearchConflictMarkers()
2    normal /<<<<<<<\|=======\||||||||\|>>>>>>>
3 endfunction
4
5 function! StripTrailingSpaces()
6     %s/ \+$//
7 endfunction
8
9 function! SqueezeEmptyLines()
10     " Replace multiple consecutive empty lines with just one
11     %s/\n\{3,\}/\r\r/
12 endfunction