nntrn / save

https://nntrn.github.io/save/
2 stars 0 forks source link

vim #32

Open nntrn opened 11 months ago

nntrn commented 11 months ago

Strip trailing whitespace

:%s/\s\+$//e

Use a keybinding to strip all trailing whitespace

"Remove all trailing whitespace by pressing F5
nnoremap <F5> :let _s=@/<Bar>:%s/\s\+$//e<Bar>:let @/=_s<Bar><CR>