glow/ui/ignore_general.go
2020-10-05 13:54:01 +02:00

11 lines
210 B
Go

// +build !darwin
package ui
// Whether or not we should ignore the given path
func ignorePath(m model, p string) bool {
if isDotFileOrDir(m.cwd, p) {
return true
}
return pathIsChild(m.cfg.Gopath, p)
}