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