diff --git a/source/filesystem.go b/source/filesystem.go index 96853c8dd..abec6ca6e 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 }