summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_windows.go
blob: 71124808bbf8ca5f8c2f2d02acefaa0112c4c77d (plain)
1
2
3
4
5
6
7
8
9
10
11
package config

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