1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-21 00:30:00 +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

View File

@ -5,7 +5,7 @@ func GetPlatformDefaultConfig() OSConfig {
return OSConfig{ return OSConfig{
EditCommand: ``, EditCommand: ``,
EditCommandTemplate: `{{editor}} {{filename}}`, EditCommandTemplate: `{{editor}} {{filename}}`,
OpenCommand: `cmd /c "start "" {{filename}}"`, OpenCommand: `cmd /c start "" {{filename}}`,
OpenLinkCommand: `cmd /c "start "" {{link}}"`, OpenLinkCommand: `cmd /c start "" {{link}}`,
} }
} }