Skip to content

Instantly share code, notes, and snippets.

@takeshy
Created November 15, 2018 02:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takeshy/3703b55bec3a04cd7644188b7feb7316 to your computer and use it in GitHub Desktop.
Save takeshy/3703b55bec3a04cd7644188b7feb7316 to your computer and use it in GitHub Desktop.
remove trailing space on save
function! <SID>StripTrailingWhitespaces()
let l = line(".")
let c = col(".")
%s/\s\+$//e
call cursor(l, c)
endfun
autocmd BufWritePre *.ts,*.rb,*.tsx,*.js,*.erb :call <SID>StripTrailingWhitespaces()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment