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

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