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

package config

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