mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-28 09:08:41 +02:00
12 lines
210 B
Go
12 lines
210 B
Go
package commands
|
|
|
|
func getPlatform() *Platform {
|
|
return &Platform{
|
|
os: "windows",
|
|
shell: "cmd",
|
|
shellArg: "/c",
|
|
escapedQuote: "\\\"",
|
|
openCommand: "cygstart {{filename}}",
|
|
}
|
|
}
|