Ignore hidden files per Unix conventions

This commit is contained in:
Radek Simko 2015-03-18 07:49:39 +00:00
parent 18a83347b5
commit f794f30b7d
2 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ func dirFiles(dir string) ([]string, []string, error) {
// provided file name is a temporary file for the following editors:
// emacs or vim.
func isTemporaryFile(name string) bool {
return strings.HasSuffix(name, "~") || // vim
strings.HasPrefix(name, ".#") || // emacs
return strings.HasPrefix(name, ".") || // Unix-like hidden files
strings.HasSuffix(name, "~") || // vim
(strings.HasPrefix(name, "#") && strings.HasSuffix(name, "#")) // emacs
}