mirror of
https://github.com/charmbracelet/glow
synced 2024-11-10 06:04:18 +00:00
14 lines
216 B
Go
14 lines
216 B
Go
// +build darwin
|
|
|
|
package ui
|
|
|
|
import "path/filepath"
|
|
|
|
func ignorePatterns(m model) []string {
|
|
return []string{
|
|
filepath.Join(m.common.cfg.HomeDir, "Library"),
|
|
m.common.cfg.Gopath,
|
|
"node_modules",
|
|
".*",
|
|
}
|
|
}
|