Also ignore Emacs lock & recovery files.

This commit is contained in:
Joe Kopena 2014-03-03 16:55:28 -05:00 committed by spf13
parent 3a0ab5a3dd
commit d84f707da1

View file

@ -122,6 +122,10 @@ func ignoreDotFile(filePath string) bool {
return true
}
if base[0] == '#' {
return true
}
if base[len(base)-1] == '~' {
return true
}