summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_windows.go
blob: fb42689a90cfc4edeb5b5d1c7729e0ceaa4fe080 (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}}`,
	}
}