Skip to content

Instantly share code, notes, and snippets.

@allenyang79
Last active November 2, 2017 02:26
Show Gist options
  • Save allenyang79/d551bdd6110e9628eb93b2535d2634a0 to your computer and use it in GitHub Desktop.
Save allenyang79/d551bdd6110e9628eb93b2535d2634a0 to your computer and use it in GitHub Desktop.
vim remove end empty line #vim
function TrimEndLines()
let cursor = getpos(".")
:%s#\($\n\s*\)\+\%$##
call setpos('.', cursor)
endfunction
au BufWritePre *.py call TrimEndLines()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment