Skip to content

Instantly share code, notes, and snippets.

@juanpabloaj
Created June 18, 2012 15:53
Show Gist options
  • Save juanpabloaj/2949048 to your computer and use it in GitHub Desktop.
Save juanpabloaj/2949048 to your computer and use it in GitHub Desktop.
if vim BufferIsEmpty
fun! BufferIsEmpty() "{{{
if line('$') == 1 && getline(1) == ''
return 1
else
return 0
endif
endf "}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment