Skip to content

Instantly share code, notes, and snippets.

@vpetruchok
vpetruchok / vim-trailing-spaces.md
Created July 30, 2023 18:42
Vim trailing spaces
set listchars=trail:·,tab:>→,nbsp:% ",eol:¶
set list
highlight ExtraWhitespace ctermbg=green ctermfg=blue guibg=green guifg=blue
match ExtraWhitespace /\s\+$/

fun! TrimRight()
  %s/\v\S\zs\s+$//
endfunction