summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/config/config_windows.go')
-rw-r--r--pkg/config/config_windows.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/config/config_windows.go b/pkg/config/config_windows.go
index 1bc919848..71124808b 100644
--- a/pkg/config/config_windows.go
+++ b/pkg/config/config_windows.go
@@ -3,9 +3,9 @@ package config
// GetPlatformDefaultConfig gets the defaults for the platform
func GetPlatformDefaultConfig() OSConfig {
return OSConfig{
- Editor: ``,
- EditCommand: `{{editor}} {{filename}}`,
- OpenCommand: `cmd /c "start "" {{filename}}"`,
- OpenLinkCommand: `cmd /c "start "" {{link}}"`,
+ EditCommand: ``,
+ EditCommandTemplate: `{{editor}} {{filename}}`,
+ OpenCommand: `cmd /c "start "" {{filename}}"`,
+ OpenLinkCommand: `cmd /c "start "" {{link}}"`,
}
}