From 1eb47deae494a528ca00358eec6afafb7b3208e1 Mon Sep 17 00:00:00 2001 From: John Shin Date: Sun, 3 Jul 2022 02:00:40 -0700 Subject: [PATCH] apply gofumpt --- pkg/config/config_linux.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/config/config_linux.go b/pkg/config/config_linux.go index a52602447..8fdc0c473 100644 --- a/pkg/config/config_linux.go +++ b/pkg/config/config_linux.go @@ -12,13 +12,12 @@ func isWSL() bool { // GetPlatformDefaultConfig gets the defaults for the platform func GetPlatformDefaultConfig() OSConfig { - if isWSL() { return OSConfig{ EditCommand: ``, EditCommandTemplate: "", OpenCommand: `powershell.exe start explorer.exe {{filename}} >/dev/null`, - OpenLinkCommand: `powershell.exe start {{link}} >/dev/null`, + OpenLinkCommand: `powershell.exe start {{link}} >/dev/null`, } }