From d84f707da1d46b7334ff10db2443ac17a17bbff2 Mon Sep 17 00:00:00 2001 From: Joe Kopena Date: Mon, 3 Mar 2014 16:55:28 -0500 Subject: [PATCH] Also ignore Emacs lock & recovery files. --- source/filesystem.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/filesystem.go b/source/filesystem.go index 96853c8d..abec6ca6 100644 --- a/source/filesystem.go +++ b/source/filesystem.go @@ -122,6 +122,10 @@ func ignoreDotFile(filePath string) bool { return true } + if base[0] == '#' { + return true + } + if base[len(base)-1] == '~' { return true } -- 2.30.2