mirror of
https://github.com/charmbracelet/glow
synced 2024-12-12 13:12:32 +00:00
fce3edf7db
* feat!: cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * more cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * fix: more cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * fix: more cleanup --------- Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
15 lines
226 B
Go
15 lines
226 B
Go
//go:build darwin
|
|
// +build darwin
|
|
|
|
package ui
|
|
|
|
import "path/filepath"
|
|
|
|
func ignorePatterns(m commonModel) []string {
|
|
return []string{
|
|
filepath.Join(m.cfg.HomeDir, "Library"),
|
|
m.cfg.Gopath,
|
|
"node_modules",
|
|
".*",
|
|
}
|
|
}
|