Skip to content

Instantly share code, notes, and snippets.

@flaneur2020
Created August 24, 2012 07:25
Show Gist options
  • Select an option

  • Save flaneur2020/3447090 to your computer and use it in GitHub Desktop.

Select an option

Save flaneur2020/3447090 to your computer and use it in GitHub Desktop.
vim auto clear blank lines
fun! DelBlank()
let _s=@/
let l = line(".")
let c = col(".")
:%s/\s\+$//e
let @/=_s
call cursor(l, c)
endfun
au BufWritePre *.* :call DelBlank()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment