1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-10 11:10:18 +02:00

Fix open command in Windows

This commit is contained in:
Ryooooooga 2021-08-23 21:13:21 +09:00
parent 487ad196a7
commit 51f05ce08b
No known key found for this signature in database
GPG Key ID: 07CF200DFCC20C25

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