summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_default_platform.go
blob: fabdf8a882750fb996b9f445b929ac5e73f7fd56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// +build !windows,!linux

package config

// GetPlatformDefaultConfig gets the defaults for the platform
func GetPlatformDefaultConfig() OSConfig {
	return OSConfig{
		EditCommand:     ``,
		OpenCommand:     "open {{filename}}",
		OpenLinkCommand: "open {{link}}",
	}
}