1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-06 03:53:59 +02:00

Merge pull request #1448 from Ryooooooga/feature/fix-open-files-in-windows

Fix open command in Windows #1403
This commit is contained in:
Mark Kopenga 2021-08-23 15:37:07 +02:00 committed by GitHub
commit bdea3b7dcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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}}`,
}
}