summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
authorMark Kopenga <mkopenga@gmail.com>2021-08-23 15:37:07 +0200
committerGitHub <noreply@github.com>2021-08-23 15:37:07 +0200
commitbdea3b7dcfc6da36d8bb52fca0bc9dc32027320b (patch)
tree0fda24473119947ab10519928986871063e5247a /pkg/config
parent487ad196a7c03d8cb3e0abc41dea42dd96db8a62 (diff)
parent51f05ce08b7293863510963f33f6ad3c7ae9c58d (diff)
Merge pull request #1448 from Ryooooooga/feature/fix-open-files-in-windows
Fix open command in Windows #1403
Diffstat (limited to 'pkg/config')
-rw-r--r--pkg/config/config_windows.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/config/config_windows.go b/pkg/config/config_windows.go
index 71124808b..fb42689a9 100644
--- a/pkg/config/config_windows.go
+++ b/pkg/config/config_windows.go
@@ -5,7 +5,7 @@ func GetPlatformDefaultConfig() OSConfig {
return OSConfig{
EditCommand: ``,
EditCommandTemplate: `{{editor}} {{filename}}`,
- OpenCommand: `cmd /c "start "" {{filename}}"`,
- OpenLinkCommand: `cmd /c "start "" {{link}}"`,
+ OpenCommand: `cmd /c start "" {{filename}}`,
+ OpenLinkCommand: `cmd /c start "" {{link}}`,
}
}