1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-28 09:08:41 +02:00
lazygit/pkg/commands/os_windows.go
2018-09-01 11:38:32 +10:00

12 lines
210 B
Go

package commands
func getPlatform() *Platform {
return &Platform{
os: "windows",
shell: "cmd",
shellArg: "/c",
escapedQuote: "\\\"",
openCommand: "cygstart {{filename}}",
}
}