function! StripSpecialM() abort
:%s/
$//
endfunction
augroup RemoveSpecialM
autocmd BufWritePre <buffer> call StripSpecialM()
augroup END