Happy helm

Tobias Schmidt published on
1 min, 63 words

Tags: helm

Happy helm

Don't forget to remove trailing whitespaces!

I'm doing it via vim and a macro found on stackOverflow/vim.wikia.

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